如何将 .txt 文件内容包含在 Latex 文件中,以便从 Latex 文件生成的 PDF 记录 .txt 文件的内容
\verbatiminput{../../foo.txt} 不起作用。这样做会导致编译器在 .tex 文件中的该行处中断。
请告诉我如何在 Latex 中包含 .txt 文件,以便我生成的 PDF 文件包含 .txt 文件的内容
答案1
可以使用\usepackage{listings}
。
当您想要输入文件时使用。
\lstinputlisting[caption=myfile.txt]{file.txt}
。
\documentclass[draft,a4paper]{article}
\begin{filecontents*}{file.txt}
first line
second line
third line
\end{filecontents*}
\usepackage{listings}
\begin{document}
\textbf{Title}
\lstinputlisting[caption=myfile.txt]{file.txt}
that's it.
\end{document}