在章节标题中输入文件

在章节标题中输入文件

我不知道如何在章节标题中导入文件:

\chapter{\input{"Introduction.txt"}}
\chapter{\texorpdfstring{\input{"Introduction.txt"}}{Introduction}}

这两种方法都失败了

\@chapter 的使用与其定义不符。

任何帮助将不胜感激。

答案1

\input是一个脆弱的命令,所以需要\protect在这里,虽然这看起来是一件很奇怪的事情,但它确实有效。

在此处输入图片描述

\begin{filecontents}{introduction.txt}
Introduction
\end{filecontents}
\documentclass{book}
\begin{document}
\chapter{\protect\input{Introduction.txt}}
zzz

\end{document}

相关内容