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
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- 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