如何将 verbatiminput 的字体大小更改为 footnotesize?

如何将 verbatiminput 的字体大小更改为 footnotesize?

我在 latex 中使用以下代码逐字插入包中的 R 输出。首先,我将输出放在文本文件中,然后从以下代码中调用它,

\verbatiminput{2.txt}

字体有点大。如何将所有命令 \verbatiminput{} 的字体大小更改为 footnotesize?

答案1

\begin{filecontents}[noheader]{2.txt}
This is file "2.txt".
\end{filecontents}

\documentclass{article}
\usepackage{verbatim}
\usepackage{etoolbox}

\makeatletter
\appto\verbatim@font{\footnotesize}
\makeatother

\begin{document}
Normal text\par
{\footnotesize Footnote-size text}
\verbatiminput{2.txt}
\end{document}

在此处输入图片描述

相关内容