Coloring the verbatim like environment

latex

This is a screen capture from Pragmatic Bookshelf book.

http://img13.imageshack.us/img13/3168/screenshot20100717at123.png

It looks like that the verbatim environment with the coloring, but I'm not sure.

How can one can use color for verbatim like environment as is shown?

Using line by line method would be a solution, but I expect a better way to go.

{\color{red}\begin{verbatim}
line 1
     line 2
\end{verbatim} }
\color{blue}{\begin{verbatim}
line 3
     line 4
\end{verbatim}}

Best Answer

An example using fancyvbr package

\documentclass[a4paper,10pt]{scrartcl}
\usepackage{color}
\usepackage[utf8]{inputenc}
\usepackage{fancyvrb}
\usepackage[usenames,dvipsnames]{xcolor}

\fvset{frame=single,framesep=1mm,fontfamily=courier,fontsize=\scriptsize,numbers=left,framerule=.3mm,numbersep=1mm,commandchars=\\\{\}}

\begin{document}
   \begin{Verbatim}[label={My orange command sample output}]
# \textcolor{Orange}{My orange command}
My black output
that it can be
many lines long
but this specific \textbf{\textcolor{OliveGreen}{word}}
and the following 2
\textbf{\textcolor{red}{lines are important so they}}
\textbf{\textcolor{red}{need to be highlighted and bold}}
   \end{Verbatim}
\end{document}

Sample output of this code

Related Topic