vote up 16 vote down star
16

I am looking for a LaTeX package that does syntax highlighting on code. For example, right now I use the verbatim block to write code:

\begin{verbatim}
    <html>
       <head>
           <title>Hello</title>
       </head>
       <body>Hello</body>
    </html>
\end{verbatim}

And this works fine to display the code on my document. But, suppose I wanted to highlight the HTML markup the way an IDE would in the output document? Is there a package that could help?

I would like to do the same for various languages such as Java, C#, HTML, CSS and so on.

flag

6 Answers

vote up 27 vote down check

You can use the listings package. It supports many different languages and there are lots of options for customising the output.

\documentclass{article}
\usepackage{listings}

\begin{document}
\begin{lstlisting}[language=html]
<html>
    <head>
        <title>Hello</title>
    </head>
    <body>Hello</body>
</html>
\end{lstlisting}
\end{document}
link|flag
Excellent...this is exactly what I was looking for. Thanks. – Vincent Ramdhanie Nov 19 '08 at 0:04
Does this do colors by default? I'm not seeing colored output in my test usage, and I'm not sure if that's an error on my part, or simply not a feature. – Benson Apr 11 at 0:24
2  
I found an answer here: tjansson.dk/?p=419. You can simply use the lstset command to set all kinds of styles for different properties. – Benson Apr 11 at 1:40
vote up 3 vote down

LGrind does this. It's a mature LaTeX package that's been around since adam was a cowboy and support for many programming languages.

link|flag
vote up 3 vote down

I'm not satisfied with lstlisting. It does not highlight XML code at all and screws up when using foreign Unicode characters. JavaScript is not supported, too, as it seems.

Can LGrind handle such things?

link|flag
vote up 1 vote down

I mostly use lstlistings in papers, but for coloured output (for slides) I use pygments instead.

link|flag
vote up 2 vote down

I recommend Pygments. It accepts a piece of code in any language and outputs syntax highlighted LaTeX code. It uses fancyvrb and color packages to produce its output. I personally prefer it to the listing package. I think fancyvrb creates much prettier results.

link|flag
vote up 1 vote down

I would suggest defining your own package based on the following tex code; this gives you complete freedom. http://ubuntuforums.org/archive/index.php/t-331602.html

link|flag
Thanks. I will look into this. – Vincent Ramdhanie Nov 14 at 17:24
The link just shows specific settings for syntax highlighting Python code with the 'listings' package... – las3rjock Nov 14 at 17:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.