문제

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}    
도움이 되었습니까?

해결책

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).

다른 팁

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top