转载自:http://en.wikibooks.org/wiki/LaTeX/Source_Code_Listings
Using the listings package
Using the package listings you can add non-formatted text as you would do with \begin{verbatim} but its main aim is to include the source code of any programming language within your document. If you wish to include pseudocode or algorithms, you may find Algorithms and Pseudocode useful also.
To use the package, you need:
\usepackage{listings} |
The listings package supports highlighting of all the most common languages and it is highly customizable. If you just want to write code within your document the package provides the lstlisting environment:
\begin{lstlisting} |
Another possibility, that is very useful if you created a program on several files and you are still editing it, is to import the code from the source itself. This way, if you modify the source, you just have to recompile the LaTeX code and your document will be updated. The command is:
\lstinputlisting{source_filename.py} |
in the example there is a Python source, but it doesn't matter: you can include any file but you have to write the full file name. It will be considered plain text and it will be highlighted according to your settings, that means it doesn't recognize the programming language by itself. You can specify the language while including the file with the following command:
\lstinputlisting[language=Python]{source_filename.py} |
You can also specify a scope for the file.
\lstinputlisting[language=Python, firstline=37, lastline=45]{source_filename.py} |
This comes in handy if you are sure that the file will not change (at least before the specified lines). You may also omit the firstlineor lastline parameter: it means everything up to or starting from this point.
This is a basic example for some Pascal code:
\documentclass{article} |
Supported languages
It supports the following programming languages:
ABAP2,4 | IDL4 | PL/I |
ACSL | inform | Plasm |
Ada4 | Java4 | POV |
Algol4 | JVMIS | Prolog |
Ant | ksh | Promela |
Assembler2,4 | Lisp4 | Python |
Awk4 | Logo | R |
bash | make4 | Reduce |
Basic2,4 | Mathematica1,4 | Rexx |
C4 | Matlab | RSL |
C++4 | Mercury | Ruby |
Caml4 | MetaPost | S4 |
Clean | Miranda | SAS |
Cobol4 | Mizar | Scilab |
Comal | ML | sh |
csh | Modelica3 | SHELXL |
Delphi | Modula-2 | Simula4 |
Eiffel | MuPAD | SQL |
Elan | NASTRAN | tcl4 |
erlang | Oberon-2 | TeX4 |
Euphoria | OCL4 | VBScript |
Fortran4 | Octave | Verilog |
GCL | Oz | VHDL4 |
Gnuplot | Pascal4 | VRML4 |
Haskell | Perl | XML |
HTML | PHP | XSLT |
For some of them, several dialects are supported. For more information, refer to the documentation that comes with the package, it should be within your distribution under the name listings-*.dvi.
- Notes
- It supports Mathematica code only if you are typing in plain text format. You can't include *.NB files \lstinputlisting{...} as you could with any other programming language, but Mathematica can export in a pretty-formatted LaTeX source.
- Specification of the dialect is mandatory for these languages (e.g. language={[x86masm]Assembler}).
- Modelica is supported via the dtsyntax package available here.
- For these languages, multiple dialects are supported. C, for example, has ANSI, Handel, Objective and Sharp. See p. 12 of thelistings manual for an overview.
Settings
You can modify several parameters that will affect how the code is shown. You can put the following code anywhere in the document (it doesn't matter whether before or after \begin{document}), change it according to your needs. The meaning is explained next to any line.
\usepackage{listings} |
- escapeinside
The escapeinside line needs an explanation. The option escapeinside={A}{B} will define delimiters for escaping into LaTeX code, i.e.all the code between the string "A" and "B" will be parsed as LaTeX over the current listings style. In the example above, the comments for Octave start with %, and they are going to be printed in the document unless they start with %*, in which case they are read as LaTeX (with all LaTeX commands fulfilled) until they're closed with another *). If you add the above paragraph, the following can be used to alter the settings within the code:
\lstset{language=C,caption={Descriptive Caption Text},label=DescriptiveLabel} |
There are many more options, check the official documentation.
Style definition
The package lets you define styles, i.e. profiles specifying a set of settings.
Example
\lstdefinestyle{customc}{ |
In our example, we only set two options globally: the default style and the escape character. Usage:
\begin{lstlisting} #include <stdio.h> #define N 10 /* Block * comment */ int main() { int i; // Line comment. puts("Hello world!"); for (i = 0; i < N; i++) { puts("LaTeX is also great for programmers!"); } return 0; } \end{lstlisting} \lstinputlisting[caption=Scheduler, style=customasm]{sched.s}
The C part will print as
Automating file inclusion
If you have a bunch of source files you want to include, you may find yourself doing the same thing over and over again. This is where macros show their real power.
\newcommand{\includecode}[2][c]{\lstinputlisting[caption=#2, escapechar=, style=custom#1]{#2}} |
In this example, we create one command to ease source code inclusion. We set the default style to be customc. All listings will have their name as caption: we do not have to write the file name twice thanks to the macro. Finally we list all listings with this command from the listings package.
See Macros for more details.
Encoding issue
By default, listings does not support multi-byte encoding for source code. The extendedchar option only works for 8-bits encodings such as latin1.
To handle UTF-8, you should tell listings how to interpret the special characters by defining them like so
\lstset{literate= |
The above table will cover most characters in latin languages. For a more detailed explanation of the usage of the literate option check section 5.4 in the Listings Documentation.
Nonetheless, commenting source code in a language other than English is sometimes considered bad practice. English normally allows your source code to be widely understood and maintained.
Customizing captions
You can have fancy captions (or titles) for your listings using the caption package. Here is an example for listings.
\usepackage{caption} |
References
A lot more detailed information can be found in a PDF by Carsten Heinz and Brooks Moses.
Details and documentation about the Listings package can be found at its CTAN website.