我设法为之前描述的问题提供了 MWE(感谢 @lockstep)如何在目录、图表和参考书目第一页的底部添加页码?。
问题是我正在使用\pagestyle{uheadings}
,它阻止解决方案发挥作用。
\documentclass[12pt,a4paper,oneside]{mwbk}
\usepackage{polski}
\usepackage{natbib}
\makeatletter
\let\ps@opening\hf@plain %it works without adding uheadings
\makeatother
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@misc{A01,
author = {Author, A.},
year = {2001},
title = {Alpha},
}
\end{filecontents}
\usepackage{lipsum}
\begin{document}
\pagestyle{uheadings} %this is what I added.
\tableofcontents
\chapter{foo}
\thispagestyle{plain} %this is what I added.
Some text \citep{A01}.
\lipsum[1-10]
\bibliographystyle{asr}
\bibliography{\jobname}
\end{document}
您知道如何在使用?时在目录、图表/表格列表和参考书目第一页的底部添加页码吗uheadings
?
\thispagestyle{plain}
适用于章节。
答案1
您必须添加重新定义后命令\pagestyle
:
\pagestyle{uheadings}
\makeatletter
\let\ps@opening\hf@plain
\makeatother