1. ホーム
  2. latex

[解決済み] LaTeXの数式内部で三振をする方法は?[クローズド]

2022-02-05 16:43:32

質問

以下のスニペットを見て、どうしたら本文と同じような取り消し線効果を得られるか教えてください。私は最新のUbuntuリポジトリにあるLaTeXのバージョンを使用しています。

\documentclass{article}
\usepackage{ulem}
\begin{document}
The sout tag works perfect in the \sout{main text area} but not inside the equations.
$$
list = [1, \sout{2}, 3, \sout{4}, 5, \sout{6}, 7, \sout{8}, 9, \sout{10}]
$$
Any clue?
\end{document}

以下はLaTeXの出力です。

解決方法は?

のようです。 \sout は、math envの中では動作しません。 このようにするとうまくいくので試してみてください。

\documentclass{article}
\usepackage{ulem}
\begin{document}
The sout tag works perfect in the \sout{main text area} but not inside the equations.

$list = $[1, \sout{2}, 3, \sout{4}, 5, \sout{6}, 7, \sout{8}, 9, \sout{10}$]$

Any clue?
\end{document}