如何在.tex或latex文件中插入实际或当前文件名(我在文件夹中保存的文件的名称)?

时间:2011-04-05 09:26:30

标签: latex tex

如何在.tex或latex文件中插入实际或当前文件名(保存在文件夹中的文件名)?在Writer(OpenOffice)中使用它在脚或头文件中是正常的,但在.tex文件中是否有办法做到这一点?我需要它在脚上打印。感谢

2 个答案:

答案 0 :(得分:7)

您可以使用currfile包。

以下是将当前文件名一般放入文档的方法:

\documentclass{article} 
\usepackage{currfile}

\title{Article}
\author{Author}
%\date{} 

\begin{document}
\maketitle

The current file is: \currfilename.\\

\end{document}

以下是将当前文件名放在页脚中的方法:

\documentclass{article} 
\usepackage{currfile}

\title{Article}
\author{Author}
%\date{} 

\usepackage{fancyhdr}
\pagestyle{plain}
\renewcommand{\headrulewidth}{0pt}  %get rid of header
\fancyfoot[L]{\currfilename} %put current file in footer

\begin{document}
\maketitle
\thispagestyle{fancy}% sets the current page style to 'fancy'

Your text goes here.\\

\end{document}

答案 1 :(得分:1)

使用脚注......

\let\thefootnote\relax\footnotetext{\tiny{This is the last page of \jobname.pdf}}