更改参考书目中的标题 - bibtex

更改参考书目中的标题 - bibtex

在我的乳胶文档(report)中,我有一个如下的附录:

\appendix                             
\chapter{BLA BLA} 

\rhead[\fancyplain{}{\bfseries \thechapter. \:Statistiche UD Italian ISDT versione 2.6}]
{\fancyplain{}{\bfseries \thepage}}

\lhead[\fancyplain{}{\bfseries\thepage}]{\fancyplain{}{\bfseries}}

some text here

这种格式意味着在随后的偶数页中,在页眉中,我将页码放在左侧,将附录标题放在右侧。这是正确的。而在奇数页中,只有页码出现在标题页的右侧,这也是正确的。

然后我把参考书目部分做成这样:

\bibliography{bibliography} 
\bibliographystyle{ieeetr}
\addcontentsline{toc}{chapter}{Bibliografia}

问题是,这样,在偶数页的页眉中,我总是在左边有数字,而右侧附录的名称,而不是简单的“参考书目”一词

我怎样才能仅更改页眉页的右侧部分以显示参考书目部分?

谢谢!

答案1

两个建议:

  • 查阅该软件包的文档或教程fancyhdr。例如参见Overleaf 教程。您以一种特殊的方式使用了包的命令,从而弄乱了标题。

  • 使用babel带有选项的包italian。这将自动设置参考书目的标题(以及意大利语的其他内容)。

以下是如何设置标题的草图。如果您无法将我的建议应用到您的设置中,请发布完全的文档(包括序言)。由于您提供的信息太少,很难给出足够的建议。

\documentclass[twoside]{report}
\usepackage[T1]{fontenc}% use T1 font encoding for better glyphs
\usepackage[italian]{babel}% set up LaTeX for Italian
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}% clear header and footer
\fancyhead[LE,RO]{\bfseries\thepage}% page number on the left for even pages and on the right for odd pages.
\fancyhead[RE]{\bfseries\leftmark}% chapter title on the right side of even pages
\usepackage{lipsum}% only used for the sample text 
\begin{document}
\appendix                             
\chapter[Statistiche UD Italian ISDT]{Statistiche UD Italian ISDT versione 2.6}
% Note the use of the optional argument with a shortened title
% since the chapter title is too long to fit into a single header line

\lipsum[1-8]% generates sample text

\nocite{*}% includes all citations from bibliography.bib
\bibliographystyle{ieeetr}
\bibliography{bibliography} 
\end{document}

在此处输入图片描述

相关内容