建立 fancyhdr 頁腳,如下所示: \lfoot{\centering{居左}}

建立 fancyhdr 頁腳,如下所示: \lfoot{\centering{居左}}

頁尾的文字似乎左右居中

如何創造這樣的頁尾?它的文字似乎位於頁面左半部和頁面右半部的中心。我嘗試過,例如,使用fancyhdr

\lfoot{\centering{some text}}

但這只是使文本在整個頁面上居中。

答案1

\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\lfoot{\hfill Specific Arms \hfill Page \thepage\hfill}

或者

\lfoot{\makebox[0.5\linewidth]{Specific Arms}\makebox[0.5\linewidth]{Page \thepage}}

答案2

謝謝赫伯特。我正在使用你的答案,然後我發現:

\fancyfoot[L]{\scriptsize \hskip 0pt plus .25 fill Research Strategy \hskip 0pt plus .5 fill  Page \thepage\hskip 0pt plus .25 fill }

這稍微複雜一些,但它允許您調整每個開放空間中的空間量。

相關內容