logo

LaTeXで取り消し線を適用する方法 📂論文作成

LaTeXで取り消し線を適用する方法

説明1

ulemパッケージ\soutまたはsoulパッケージのstを使用すると取り消し線を適用できる。

コード

\sout

数式にもよく動作するが、ディスプレイモードではうまく動作しないようだ。

\documentclass[10pt]{article}
\usepackage{amsmath, amssymb}
\usepackage{ulem}

\begin{document}

\sout{The ulem package provides various types of underlining}
that can stretch between words and be broken across lines.
Use it with {\LaTeX} or plain \TeX. \\
\sout{$x^{2} + y^{2} = 1$}
$$
\sout{ \hat{f}(\xi) = \int_{\mathbb{R}} f(x) e^{-2\pi i x \xi} dx }
$$

\end{document}

\st

\stの場合、ディスプレイモードで使用するとエラーが発生してドキュメントが正しくレンダリングされない。

\documentclass[10pt]{article}
\usepackage{amsmath, amssymb}
\usepackage{soul}

\begin{document}

\st{The soul-ori package provides five commands that are aimed at emphasizing text parts}.
Each of the commands takes one argument that can either be the text
itself or the name of a macro that contains text.\\
\st{$x = \dfrac{-b \pm \sqrt{b^{2} - 4ac}}{2a}$}

\end{document}