高效转义LaTeX中的许多_

问题描述 投票:0回答:7

不使用

\_
如何逃脱_?

这是问题的例子

word_a_a_a_a_a_b_c_dd

您可以使用一个函数来实现此目的。 不过我记不起它的名字了。

latex escaping tex
7个回答
30
投票

您是否正在考虑

underscore
包,它重新定义了下划线符号,以便您不必在文本模式下转义它?请参阅此处


26
投票

除了逐字我不知道。

逐字环境:

\begin{verbatim}
  word_a_a_a_a_a_b_c_dd
\end{verbatim}

内嵌:

\verb|word_a_a_a_a_a_b_c_dd|

14
投票

我无法让

underscore
包工作,所以我使用了
url
包:

\usepackage{url}
\urlstyle{sf}  % or rm, depending on your font

...

Foo \url{word_a_a_a_a_a_b_c_dd} bar.

4
投票

有趣的是,这是一个针对编程问题的问答网站,但还没有人建议编程。

您可以定义自己的命令来替换下划线标记:

\documentclass{article}

\newcommand{\filename}[1]{\emph{\replunderscores{#1}}}

\makeatletter
% \expandafter for the case that the filename is given in a command
\newcommand{\replunderscores}[1]{\expandafter\@repl@underscores#1_\relax}

\def\@repl@underscores#1_#2\relax{%
    \ifx \relax #2\relax
        % #2 is empty => finish
        #1%
    \else
        % #2 is not empty => underscore was contained, needs to be replaced
        #1%
        \textunderscore
        % continue replacing
        % #2 ends with an extra underscore so I don't need to add another one
        \@repl@underscores#2\relax
    \fi
}
\makeatother


\begin{document}
    \filename{__init__.py}
\end{document}

3
投票

通常在这种情况下你需要等宽字体,所以你可以使用这个:

\verb|word_a_a_a_a_a_b_c_dd|

1
投票

您可能还会想到

lstlisting
verbatim
环境,它们通常用于显示代码 - 可以包含下划线。然而,这些环境所做的不仅仅是“转义”下划线。


0
投票

当文本来自另一个宏时,上述大多数方法都会失败,因为人们不想列出宏名称。 \url{} 命令有效,但如果不想生成链接,那么也可以使用 olinkurl{}.

© www.soinside.com 2019 - 2024. All rights reserved.