使用类似以下内容创建 fancyhdr 页脚:\lfoot{\centering{Centered to the left}}

使用类似以下内容创建 fancyhdr 页脚:\lfoot{\centering{Centered to the left}}

页脚中的文字似乎位于左右两侧

我如何创建这样的页脚?它似乎是页面左半部分和右半部分居中的文本。我尝试过,例如,使用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

谢谢 Herbert。我使用了你的答案,然后我发现:

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

这稍微复杂一些,但它允许您调整每个开放空间的空间量。

相关内容