LaTeX package to do syntax highlighting of code in various languages - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T22:19:56Zhttp://stackoverflow.com/feeds/question/300521http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/300521/latex-package-to-do-syntax-highlighting-of-code-in-various-languages15LaTeX package to do syntax highlighting of code in various languagesVincent Ramdhanie2008-11-18T23:18:25Z2009-11-14T17:13:23Z
<p>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:</p>
<pre><code>\begin{verbatim}
<html>
<head>
<title>Hello</title>
</head>
<body>Hello</body>
</html>
\end{verbatim}
</code></pre>
<p>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? <strong>Is there a package that could help?</strong></p>
<p>I would like to do the same for various languages such as Java, C#, HTML, CSS and so on.</p>
http://stackoverflow.com/questions/300521/latex-package-to-do-syntax-highlighting-of-code-in-various-languages/300546#3005463Answer by ConcernedOfTunbridgeWells for LaTeX package to do syntax highlighting of code in various languagesConcernedOfTunbridgeWells2008-11-18T23:27:34Z2008-11-18T23:27:34Z<p><a href="http://www.ctan.org/tex-archive/nonfree/support/lgrind/" rel="nofollow">LGrind</a> does this. It's a mature LaTeX package that's been around since adam was a cowboy and support for many programming languages.</p>
http://stackoverflow.com/questions/300521/latex-package-to-do-syntax-highlighting-of-code-in-various-languages/300573#30057326Answer by ChrisN for LaTeX package to do syntax highlighting of code in various languagesChrisN2008-11-18T23:43:01Z2008-11-18T23:43:01Z<p>You can use the <a href="http://www.ctan.org/tex-archive/macros/latex/contrib/listings/" rel="nofollow">listings</a> package. It supports many different languages and there are lots of options for customising the output.</p>
<pre><code>\documentclass{article}
\usepackage{listings}
\begin{document}
\begin{lstlisting}[language=html]
<html>
<head>
<title>Hello</title>
</head>
<body>Hello</body>
</html>
\end{lstlisting}
\end{document}
</code></pre>
http://stackoverflow.com/questions/300521/latex-package-to-do-syntax-highlighting-of-code-in-various-languages/511442#5114423Answer by webjunkie for LaTeX package to do syntax highlighting of code in various languageswebjunkie2009-02-04T13:51:08Z2009-02-04T13:51:08Z<p>I'm not satisfied with <code>lstlisting</code>. It does not highlight XML code at all and screws up when using foreign Unicode characters. JavaScript is not supported, too, as it seems.</p>
<p>Can LGrind handle such things?</p>
http://stackoverflow.com/questions/300521/latex-package-to-do-syntax-highlighting-of-code-in-various-languages/1234635#12346351Answer by Paul Biggar for LaTeX package to do syntax highlighting of code in various languagesPaul Biggar2009-08-05T17:27:16Z2009-08-05T17:27:16Z<p>I mostly use lstlistings in papers, but for coloured output (for slides) I use pygments instead.</p>
http://stackoverflow.com/questions/300521/latex-package-to-do-syntax-highlighting-of-code-in-various-languages/1452086#14520862Answer by reprogrammer for LaTeX package to do syntax highlighting of code in various languagesreprogrammer2009-09-20T21:39:11Z2009-09-20T21:39:11Z<p>I recommend <a href="http://pygments.org/" rel="nofollow">Pygments</a>. It accepts a piece of code in any language and outputs syntax highlighted LaTeX code. It uses <a href="http://www.ctan.org/tex-archive/macros/latex/contrib/fancyvrb/" rel="nofollow">fancyvrb</a> and <a href="http://www.ctan.org/tex-archive/help/Catalogue/entries/color.html" rel="nofollow">color</a> packages to produce its output. I personally prefer it to the listing package. I think <a href="http://www.ctan.org/tex-archive/macros/latex/contrib/fancyvrb/" rel="nofollow">fancyvrb</a> creates much prettier results.</p>
http://stackoverflow.com/questions/300521/latex-package-to-do-syntax-highlighting-of-code-in-various-languages/1734890#17348901Answer by okhalid for LaTeX package to do syntax highlighting of code in various languagesokhalid2009-11-14T17:13:23Z2009-11-14T17:13:23Z<p>I would suggest defining your own package based on the following tex code; this gives you complete freedom. <a href="http://ubuntuforums.org/archive/index.php/t-331602.html" rel="nofollow">http://ubuntuforums.org/archive/index.php/t-331602.html</a></p>