如何逐字逐句地包含文件内容?

如何逐字逐句地包含文件内容?

我如何将文本文件的内容逐字逐句地包含在我的乳胶文档中?

我试过了(文本文件不包含任何@)

\documentclass{article}
\begin{document}   
    \verb@
    \input{temp.txt}
    @
\end{document}

但我收到了错误:\verb ended by end of line.

PS:当然,即使没有错误,上述操作也无法工作,因为如果它工作了,输出文件只会包含一行\input{temp.txt}

答案1

尝试

\documentclass[10pt]{article}

\usepackage{verbatim}

\begin{document}
\verbatiminput{temp.txt}
\end{document}

我经常使用它来包含TeX源代码,因此很多不寻常的字符都得到了正确处理 - 即字面意思。

相关内容