我使用该verbatim
包插入一些文本文件。特别是使用命令\verbatiminput{probit.txt}
。但是文本文件中的一些字符会导致错误:
包 inputenc 错误:在输入编码“utf8”中,使用的键盘字符未定义(inputenc)
我发现问题是由 txt 文件中的这些符号引起的:
' '
我如何才能绕过这些错误并使用\verbatiminput{probit.txt}
命令插入verbatim
环境。
(因为我有太多的文本文件,我不想从每个文件中删除符号或使用,\begin{verbatim} \end{verbatim}
因为复制粘贴所有文本文件会非常耗时。)
\documentclass[11pt]{article}
\usepackage{lmodern}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenx}
\begin{document}
\maketitle
\section{First section}
Your text goes here.
\verbatiminput{probit.txt}
More text.
\end{document}