我需要用包含 的“代码字体”编写大量文本enumerate
。我喜欢 提供的样式texttt
,但它对我的情况不起作用。
我想要这样的东西:
\documentclass[12pt]{report}
\begin{document}
\texttt{Report:
\begin{enumerate}
\item First Observation
\item Second Observation
\end{enumerate}
}
\end{document}
谢谢。
答案1
要以打字机字体(“代码字体”)排版文本,请使用以下ttfamily
环境:
\documentclass[12pt]{report}
\begin{document}
\begin{ttfamily}% switch to tt font
Report:
\begin{enumerate}
\item First Observation
\item Second Observation
\end{enumerate}
\end{ttfamily}
% back in normal font
More text in text font.
\end{document}
然而,如果你的目标是写作代码,使用verbatim
环境(或者,对于语法突出显示,使用listings
包)将更适合。