这是我的代码:
\usepackage[french]{minitoc}
\fancyfoot{}
\fancyfoot[RO,LE]{ \textbf{ \small \textsf{\thepage}}}
\documentclass[12pt,a4paper]{book}
\usepackage[T1]{fontenc}
\renewcommand{\baselinestretch}{1.5}
\begin{document}
\include{Chapter1}
\include{Chapter2}
\end{document}
有了这段代码,我就可以知道页数:左边一页,右边一页。请问如何才能把中间的页数全部改掉?而且每章的第一页(包含minitoc
)没有页数,请问如何才能在这一页中添加页数?
答案1
您的问题的第一部分应该这样解决......
\fancyfoot[C]{\textbf{\small\textsf{\thepage}}}
更改普通的花式页面样式,在章节开始时调用
\fancypagestyle{plain}{
\fancyfoot{}
\fancyfoot[C]{\textbf{\small\textsf{\thepage}}}
}
上述命令还可用于通过将 plain 更改为 xyz 来创建新的花式页面样式,例如,我已将其用于各种文档,它是一个比上述命令更全面的命令,因为它首先通过 \fancyhf{} 命令重置所有内容。
%Header and Footer.
\usepackage{lastpage}
\fancypagestyle{detailed}{
\fancyhf{} % clear all header and footers
\fancyfoot[R]{\footnotesize{Page. \thepage~of~\pageref{LastPage}}}
\renewcommand{\headrulewidth}{1pt}
\renewcommand{\footrulewidth}{1pt}
}
然后你可以打电话
\thispagestyle{detailed}
对于单个(本地)实例,或者,
\pagestyle{detailed}
从那时起设置页面样式,或者直到其他东西改变它。