Question

How do I define a font to a listing?

I would like one font on the line numbers (Sans 6pt) and another (Monospace (8pt) on the code.

Was it helpful?

Solution

You can define the style of the line numbers using the following command:

\lstdefinestyle{numbers}{numberstyle=\tiny}

The code appearance can be defined using:

\lstset{basicstyle=\small}

You can replace \tiny and \small by your own style specifications.

OTHER TIPS

Look at the listings or fancyvrb package.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top