Pergunta

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.

Foi útil?

Solução

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.

Outras dicas

Look at the listings or fancyvrb package.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top