When I read Pragmatic Bookshelf books, it has the following format:
http://img210.imageshack.us/img210/2965/screenshot20100717at121.pngThe package for formatting source code in LaTeX is listings. Check out what it can do in its manual here.
This is how close I managed to get:
The filename from the caption is also the target of the Download
link. Sorry about the lack of round corners. Those can probably be done with TikZ.
Here's the preamble:
\usepackage{listings}
\usepackage[T1]{fontenc}
\usepackage[scaled]{beramono}
\usepackage{tgadventor}
\usepackage[usenames,dvipsnames]{color}
\usepackage[colorlinks=true]{hyperref}
\definecolor{lineno}{rgb}{0.5,0.5,0.5}
\definecolor{code}{rgb}{0,0.1,0.6}
\definecolor{keyword}{rgb}{0.5,0.1,0.1}
\definecolor{titlebox}{rgb}{0.85,0.85,0.85}
\definecolor{download}{rgb}{0.8,0.1,0.5}
\definecolor{title}{rgb}{0.4,0.4,0.4}
\lstset{
language=Lisp,
basicstyle=\ttfamily\small\color{code},
showspaces=false,
showstringspaces=false,
numbers=left,
firstnumber=1,
stepnumber=5,
numberfirstline=true,
numberstyle=\color{lineno}\sffamily\scriptsize,
keywordstyle=\color{keyword}\bfseries,
stringstyle=\itshape,
morekeywords={dosync,if},
deletekeywords={alter}
}
\makeatletter
\gdef\lst@SkipOrPrintLabel{%
\ifnum\lst@skipnumbers=\z@
\global\advance\lst@skipnumbers-\lst@stepnumber\relax
\lst@PlaceNumber
\lst@numberfirstlinefalse
\else
\lst@ifnumberfirstline
{\def\thelstnumber{Line \@arabic\c@lstnumber}\lst@PlaceNumber}%
\lst@numberfirstlinefalse
\else
{\def\thelstnumber{-}\lst@PlaceNumber}%
\fi
\fi
\global\advance\lst@skipnumbers\@ne}%
\def\lst@maketitle#1{
\vskip\abovecaptionskip
\colorbox{titlebox}{
\scriptsize
\color{download}\ttfamily\href{http://example.com/#1}{Download}
\color{title}\sffamily\bfseries#1}
\vskip\belowcaptionskip}
\makeatother
Then, typeset a listing in the body with:
\begin{lstlisting}[title=examples/introduction.clj]
(defn hello
"Writes hello message to *out*. Calls you by username.
Knows if you have been here before."
[username]
(dosync
(let [past-visitor (@visitors username)]
(if past-visitor
(str "Welcome back, " username)
(do
(alter visitors conj username)
(str "Hello, " username))))))
\end{lstlisting}
I love LaTeX.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With