如何在文档中保留符号,斜杠...

时间:2014-01-21 17:18:02

标签: latex

我希望将以下文本中的所有符号保留在LaTeX中。但我不知道应该使用哪种语法来保留它们。有人可以提出建议吗?

/forest # search for forest
/<\/way> # find the tag </way>
v # start the visual mode
?<way # find the begin of the tag -> mark <way> until </way>
D  # delete that tag

1 个答案:

答案 0 :(得分:1)

只需将它们放入verbatim environment,就像这样:

\begin{verbatim}
...
things you want to keep them as is
...
\end{verbatim}

对于内联模式,您可以使用\verb command

\verb=...things you want to keep them as is...=

查看here了解详情:

  

[...]如果您使用逐字环境,则开始和结束命令之间的所有输入都会被打字机处理。所有空格和新行都按照给定的方式再现,文本以适当的固定宽度字体显示。任何LaTeX命令都将被忽略并以纯文本形式处理。这是排版程序源代码的理想选择。 [...]