更改字体大小枚举

更改字体大小枚举

我有以下 LaTeX 代码来格式化页码:

\pagestyle{fancy}
\fancyhf{}
\fancyhead[R]{\thepage}     
\fancyheadoffset{0mm}
\fancyfootoffset{0mm}
\setlength{\headheight}{17pt}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\fancypagestyle{plain}{ 
    \fancyhf{}
    \rhead{\thepage}}
\setcounter{page}{5} 

\Large它们在使用默认字体大小时效果很好。我想使用以下代码更改字体大小(使用):

\pagestyle{fancy}
\fancyhf{}
\fancyhead[R]{\Large\thepage}       
\fancyheadoffset{0mm}
\fancyfootoffset{0mm}
\setlength{\headheight}{17pt}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\fancypagestyle{plain}{ 
    \Large
    \fancyhf{}
    \rhead{\thepage}}
\setcounter{page}{5} 

尺寸的变化仅在章节起始页之后的页面上可见。

答案1

报告和书籍中的章节以页面样式开始新页面plain。如果您还想更改那里的字体大小,则必须修改普通样式。

您应该在文档的序言中定义页眉和页脚。

\documentclass[a4paper]{article}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\fancyhead[R]{\Large\thepage}       
\fancyheadoffset{0mm}
\fancyfootoffset{0mm}
\setlength{\headheight}{17pt}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\fancypagestyle{plain}{ 
    \Large
    \fancyhf{}
    \rhead{\Large\thepage}
}
\usepackage{blindtext}
\begin{document}
\blinddocument
\setcounter{page}{1}
\blinddocument
\blinddocument
\end{document}

手动设置页码是一项危险的活动,因为这可能导致错误的页码。请注意,这只能在文档中完成,即在之后\begin{document}

相关内容