General ⇒ How to insert Verbatim environment in \section?
-
- Posts: 66
- Joined: Tue Oct 07, 2008 9:39 am
How to insert Verbatim environment in \section?
I want to insert Verbatim environment in moving arguments such as \section.
Is there a trick to do so?
Thanks in advance.
Hayashi
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
How to insert Verbatim environment in \section?
you could use some of the commands provided by the fancyvrb package, as the following example suggests:
Code: Select all
\documentclass{article}
\usepackage{fancyvrb}
\SaveVerb{myverb}|_verbatim%$|
\begin{document}
\tableofcontents
\section{A section title with \protect\UseVerb{myverb}}
\end{document}