如何以粗体显示标题?

如何以粗体显示标题?

有没有办法更改 XeLaTeX 中的页眉?基本上,我只想将页眉(页码、作者和标题)加粗,但针对 LaTeX 建议的所有解决方案似乎都对页眉没有任何影响。是因为我使用的是 XeLaTeX 吗?这是我的代码:

\documentclass[twoside,12pt]{book}

\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}

\begin{document}

\fancyhead{}
\fancyhead[LE,RO]{\bfseries \thepage}
\fancyhead[CO]{Titleoftext \bfseries}
\fancyhead[CE]{\bfseries Authoroftext}

\end{document}

答案1

如果我把缺失的部分添加到您的代码片段中,它就会实现您想要的效果:

\listfiles
\documentclass[twoside]{book}
\usepackage{fancyhdr} 
\pagestyle{fancy}
\fancyhf{}
\fancyhead[LE,RO]{\bfseries \thepage}
\fancyhead[CO]{\bfseries Titleoftext }
\fancyhead[CE]{\bfseries Authoroftext}

\begin{document}
foo  \newpage bar

\end{document}

文件列表:

*File List*
book.cls 2007/10/19 v1.4h Standard LaTeX document class
bk10.clo 2007/10/19 v1.4h Standard LaTeX file (size option)
fancyhdr.sty
***********

相关内容