2011-04-05 33 views
2

如何在.tex或乳膠文檔中插入實際或當前文件名(保存在文件夾中的文件的名稱)?在Writer(OpenOffice)中正常使用它在腳或頭文件中,但在.tex文件中是否有辦法執行它?我需要它在腳上打印它。謝謝如何在.tex或latex文檔中插入實際或當前文件名(我正在使用的文件的名稱保存在文件夾中)?

+2

http://tex.stackexchange.com可能是一個更好的地方得到答案。 – jhwist 2011-04-05 09:47:35

回答

5

您可以使用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} 
0

使用腳註...

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