biblatex 中的页码位置

biblatex 中的页码位置

我正在使用\printbibliography命令在中创建参考书目biblatex。问题是页码位于底部中央,而我希望它位于右下角。我一点也不知道该如何修改它。我试过修改环境,但似乎不是这样。有人有想法吗?

编辑 这是 MWE:

\documentclass[12pt,oneside]{book}
\usepackage{fancyhdr}
\usepackage[style=authoryear,labelnumber,defernumbers]{biblatex}
\addbibresource{bibli.bib}

\begin{document}
\pagestyle{fancy}
\fancyhead{}
\fancyfoot{}
\addtolength{\headheight}{0pt}
\setlength{\headsep}{0pt}
\renewcommand{\headrulewidth}{0pt}
\rfoot{\thepage}
\thispagestyle{fancy}
\cite{haber}
\printbibliography
\end{document}

答案1

 \pagestyle{fancy}
 \thispagestyle{fancy}

紧接着\printbibliography命令。

答案2

我刚刚注意到上述解决方案仅解决了书目最后一页的问题。对于所有页面,建议使用以下代码

\renewcommand{\bibsetup}{\thispagestyle{fancy}}

相关内容