LaTeX package to do syntax highlighting of code in various languages - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T22:19:56Z http://stackoverflow.com/feeds/question/300521 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/300521/latex-package-to-do-syntax-highlighting-of-code-in-various-languages 15 LaTeX package to do syntax highlighting of code in various languages Vincent Ramdhanie 2008-11-18T23:18:25Z 2009-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} &lt;html&gt; &lt;head&gt; &lt;title&gt;Hello&lt;/title&gt; &lt;/head&gt; &lt;body&gt;Hello&lt;/body&gt; &lt;/html&gt; \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#300546 3 Answer by ConcernedOfTunbridgeWells for LaTeX package to do syntax highlighting of code in various languages ConcernedOfTunbridgeWells 2008-11-18T23:27:34Z 2008-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#300573 26 Answer by ChrisN for LaTeX package to do syntax highlighting of code in various languages ChrisN 2008-11-18T23:43:01Z 2008-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] &lt;html&gt; &lt;head&gt; &lt;title&gt;Hello&lt;/title&gt; &lt;/head&gt; &lt;body&gt;Hello&lt;/body&gt; &lt;/html&gt; \end{lstlisting} \end{document} </code></pre> http://stackoverflow.com/questions/300521/latex-package-to-do-syntax-highlighting-of-code-in-various-languages/511442#511442 3 Answer by webjunkie for LaTeX package to do syntax highlighting of code in various languages webjunkie 2009-02-04T13:51:08Z 2009-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#1234635 1 Answer by Paul Biggar for LaTeX package to do syntax highlighting of code in various languages Paul Biggar 2009-08-05T17:27:16Z 2009-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#1452086 2 Answer by reprogrammer for LaTeX package to do syntax highlighting of code in various languages reprogrammer 2009-09-20T21:39:11Z 2009-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#1734890 1 Answer by okhalid for LaTeX package to do syntax highlighting of code in various languages okhalid 2009-11-14T17:13:23Z 2009-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>