乳胶当量

乳胶当量

这可能是一个简单的问题,但我找不到任何地方的答案。我如何告诉 tex(特别是 latex)不要格式化一段文本?即我想保留缩进、换行符等。

答案1

我认为最能满足你要求的是这个alltt包:

\documentclass{article}
\usepackage{alltt}
\begin{document}
\begin{alltt}
\rmfamily
hello \emph{emph}
  there
lipsum
\end{alltt}
\end{document}

不幸的是,alltt它不包含任何可以全局更改其使用字体的功能,但正如您所见,手动将其设置为使用罗马字体可以正常工作。

答案2

您可能想要的实际上是“逐字”环境。http://www.maths.tcd.ie/~dwilkins/LaTeXPrimer/PreFormatted.html

\documentclass{article}
\begin{document}
\begin{verbatim}
Preformatted
Text
Here
\end{verbatim}
\end{document}

编译结果如下:

呈现的文本

相关内容