尝试打开文件时,fancyhdr 包与 lualatex 不匹配。文件 exo.tex 包含您想要的任何内容:
\documentclass{article}
\RequirePackage{fancyhdr}
\pagestyle{fancy}
\directlua{
function BexInput ( fichier )
file = io.open( fichier , "r")
io.input(file)
print(io.read())
io.close(file)
tex.print ( "\\input{" .. fichier .. "}" )
end
}
\newcommand{\BexInput}[1]{%
\directlua{ BexInput ("#1")}
}
\begin{document}
\BexInput{exo.tex}
\end{document}