Table of Contents
I want to include raw text materials as-is into the tex file. The raw text is produced by anther program. I "inlcude" it in so that I don't need to update my latex file everytime I update the program output. what is the best way to do it?
An extension to the verbatim package that can handle TAB expansion, can number lines in an included file, can produce boxed verbatims, etc.
awk 'BEGIN{ print "\\begin{quote}\\begin{verbatim}\n" } {print} END { print "\\end{verbatim}\\end{quote}\n"} '
Use the verbatim package
\verbatiminput{filename}
*References*: [NSS] s4.5, p60.