General ⇒ spacing in verbatim
spacing in verbatim
I use the verbatim environment and the paralist package. Within verbatim environments, the spacing is
abnormal large. I have no clue how to change to small spacings (< 1 line) and still use paralist.
Any hint is welcome.
Thanks
Bender
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10358
- Joined: Mon Mar 10, 2008 9:44 pm
spacing in verbatim
I cannot reproduce your problem. When I do the same, use the verbatim environment while using paralist too, the spacing is normal. Can you provide a minimal working example that shows the problem?
Stefan
spacing in verbatim
thanks for the very fast reaction. The problem persists, but I have found a solution:
Code: Select all
\usepackage{fancyvrb}
Code: Select all
\begin{verbatim}
...
\end{verbatim}
Code: Select all
\begin{Verbatim}[frame=single,baselinestretch=0.1]
...
\end{Verbatim}
Bender