LaTeX:更改图形内的字体
我正在使用一些终端输出作为我正在编写的报告中的图形,并且需要将图形中的文本更改为等宽字体。
\begin{figure}[ht]
%bunch of text here
\caption{Mass calculation program output}
\label{fig:calcMass}
\end{figure}
I am using some terminal output as a figure in a report I am writing and need to change just the text within the figure to monospace.
\begin{figure}[ht]
%bunch of text here
\caption{Mass calculation program output}
\label{fig:calcMass}
\end{figure}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看(通常是内置的)列表包。可以在此处找到教程。
该软件包包括语法突出显示(如果您使用的是 bash),并且可以从外部文件读取输入(如果您正在记录正在编写的程序并且不想手动更改 LaTeX 代码,则这会很有用)程序发生变化)。
Take a look at the (usually built-in) listings package. A tutorial can be found here.
The package includes syntax highlighting (if you're using bash) and can read input from external files (which can be useful if you're documenting a program you're writing and don't want to manually change the LaTeX code if you make a change in the program).
verbatim
环境通常在这方面做得很好:该环境还可以防止对任何 TeX 命令进行特殊处理。
The
verbatim
environment usually does a good job at that:The environment also prevents special treatment of any TeX commands.