Reputation: 33
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}
Upvotes: 3
Views: 1421
Reputation: 772
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).
Upvotes: 2
Reputation: 477368
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.
Upvotes: 1