LaTeX:更改图形内的字体

发布于 2024-11-29 14:25:23 字数 242 浏览 2 评论 0原文

我正在使用一些终端输出作为我正在编写的报告中的图形,并且需要将图形中的文本更改为等宽字体。

\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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

书间行客 2024-12-06 14:25:23

查看(通常是内置的)列表包。可以在此处找到教程。

该软件包包括语法突出显示(如果您使用的是 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).

热情消退 2024-12-06 14:25:23

verbatim 环境通常在这方面做得很好:

\begin{verbatim}# cd /
# rm -rf *
# reboot
bash: reboot: command not found
\end{verbatim}

该环境还可以防止对任何 TeX 命令进行特殊处理。

The verbatim environment usually does a good job at that:

\begin{verbatim}# cd /
# rm -rf *
# reboot
bash: reboot: command not found
\end{verbatim}

The environment also prevents special treatment of any TeX commands.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文