The lstlisting tag has no wiki summary.
7
votes
3answers
771 views
Vim syntax highlighting with $ and lstlisting's lstinline
If I use the inline version of lstlisting as shown:
\lstinline{!$omp parallel for}
the syntax highlighting in vim goes wrong, and the remainder of the latex file is coloured red as if it is all ...
1
vote
1answer
710 views
Currency symbols inside lstlisting
I am trying to add a GBP \pounds symbol inside lstlisting
\begin{lstlisting}
Lorem ipsum 3£ \pounds
\end{lstlisting}
However this results in the following line:
Lorem ipsum 3Â \pounds
How do I ...
2
votes
3answers
2k views
latex: dollar $ sign within lstlising
I am trying to put some asm code into a latex document, onfurtunatly pdflatex treats the $ signs within my document as math env (which I do not want). On the other side I'd still like to use that ...
5
votes
2answers
2k views
Character spacing in LaTeX with lstlisting package
I'm trying to get my code snippets to look as good as possible and so far I'm having troubles with the character spacing. Here is an example of the output:
While the text in small is perfect, all ...
1
vote
1answer
475 views
Colorize numbers in lstlisting (latex)
I want to know if it is possible to colorize the numbers in lstlisting package from latex. For example i want all numbers be in red, even 0x0F (hex) and 0b00001111 (bin):
void SetaPWM2(unsigned char ...
2
votes
1answer
866 views
Latex: Showing only few lines in lstlisting
For displaying only few lines of source code lstlisting has a linerange key which prints only those ranges.
\documentclass[slidestop]{beamer}
\usepackage{listings}
\begin{document}
...
0
votes
1answer
767 views
Using listings, how do I maintain grouping of listing numbers?
I'm using the listings package for showing code, as well as algorithms in pseudocode.
This is what I would like happen:
Algorithm 1.1: myFirstAlgorithm()
... content ...
Algorithm 1.2: ...
3
votes
2answers
6k views
LaTeX: remove left margin of listing inside a table
Using LaTeX, I need to show some code snippet inside a table. Here is an example of what I'm trying to do:
\begin{document}
Par exemple :
\begin{center}
\begin{tabular}{lp{5cm}l}
\hline
Méthode ...
1
vote
2answers
1k views
LaTeX lstlisting underlined
Is there an easy way to have the complete code in a lstlisting environment underlined?
My current solution looks like this, but I'm not really happy with it.
\begin{lstlisting}[mathescape]
...
6
votes
2answers
6k views
Change “List of Listings” text
I tried to change the "List of Listings" text with the command
\renewcommand*{\lstlistlistingname}{List of XYZ}
before my \begin{document}. What's wrong with this?
By the way
...