如何在 LaTeX 方程中剔除? [关闭]

Posted

技术标签:

【中文标题】如何在 LaTeX 方程中剔除? [关闭]【英文标题】:How to strike out inside LaTeX equations? [closed] 【发布时间】:2011-02-09 11:22:02 【问题描述】:

请参阅下面的 sn-p 并告诉我如何实现与正文中相同的删除效果。我正在使用最新 Ubuntu 存储库中的 LaTeX 版本。

\documentclassarticle
\usepackageulem
\begindocument
The sout tag works perfect in the \soutmain text area but not inside the equations.
$$
list = [1, \sout2, 3, \sout4, 5, \sout6, 7, \sout8, 9, \sout10]
$$
Any clue?
\enddocument

Here is LaTeX output

【问题讨论】:

你不应该在 Latex 中使用$$。这是一个普通的 Tex 命令。 进一步了解@Debilski 所说的内容:***.com/questions/2251417/latex-dollar-sign-vs 对此进行了一些讨论。我不认为使用 $$ 是一种犯罪行为,我认为 $$ 支持不会消失,但您最好避免使用它。 【参考方案1】:

看起来\sout 在数学环境中不起作用。 你可以尝试做这样的事情,它的工作原理:

\documentclassarticle
\usepackageulem
\begindocument
The sout tag works perfect in the \soutmain text area but not inside the equations.

$list = $[1, \sout2, 3, \sout4, 5, \sout6, 7, \sout8, 9, \sout10$]$

Any clue?
\enddocument

【讨论】:

这很优雅。谢谢! 但是包 ulem\emph 更改为下划线。 来自 Sara 的回答:“...要在不让 ulem 重新定义 \emph 的工作方式的情况下使用删除线,请使用 \usepackage[normalem]ulem”。谢谢萨拉!【参考方案2】:

如果有人仍然感兴趣,我刚刚发现了 cancel package,它允许您以几种不同的方式在数学模式下敲击您的文本。不过,它不是水平的——只有对角线,在我的情况下要好得多。

【讨论】:

感谢您提及这一点。 \cancelto 命令正是我所需要的。【参考方案3】:

如果您需要在数学模式下保留删除线(例如,保留数学字体),请尝试:

\newcommand\msout[1]\text\sout\ensuremath#1

然后

$\msout\mathsfstuckout$

你需要 amsmath 和 ulem。

(来自here的解决方案。)

【讨论】:

【参考方案4】:

几乎所有非数学模式命令都可以在数学模式中使用,只需将其置于\text 环境中,例如:

\documentclassarticle
\usepackageulem
\begindocument
The sout tag works perfect in the \soutmain text area but not inside the equations.

\[ list = [1, \text\sout2, 3, \text\sout4, 5, \text\sout6, 7, \text\sout8, 9, \text\sout10] \]
Any clue?
\enddocument

如果您希望能够在没有ulem 的情况下使用删除线重新定义\emph 的工作方式,请使用\usepackage[normalem]ulem

【讨论】:

以上是关于如何在 LaTeX 方程中剔除? [关闭]的主要内容,如果未能解决你的问题,请参考以下文章

我如何对齐Latex方程中的符号?

latex中方程组的编号应如何修改?

Latex排版[1]:输入矩阵(latex如何输入矩阵对角阵方程组)

Latex排版[1]:输入矩阵(latex如何输入矩阵对角阵方程组)

Latex排版[2]:输入三角矩阵(latex如何输入三角矩阵分块矩阵方程组)

如何在 Latex 中编写 URL? [关闭]