提问于:
浏览数:
3432
![](/static/images/ext/zip.gif)Test.zip
求助大佬,页眉如何去掉章节的数字,MWE见附件
```tex
\documentclass[zihao = -4]{ctexbook}
\ctexset{% 设置章节格式
chapter/name = {,},
chapter/number = \arabic{chapter}, % 章序号为Arabic numbers
chapter/format = \centering \zihao{3} \heiti \linespread{1},
chapter/beforeskip = {4.8pt}, % 要求为24pt,24pt-16pt*1.2 = 4.8pt 段前间距
chapter/afterskip = {18pt}, % 段后间距 18pt
section/format = \raggedright \zihao{-3} \heiti , % 左对齐,小三号,黑体
section/beforeskip = {6pt}, % 要求为24pt, 24pt-15pi*1.2 = 6pt
section/afterskip = {18pt},
subsection/format = \raggedright \zihao{4} \heiti ,
subsection/beforeskip = {7.2pt}, % 要求为24pt, 24pt-14pi*1.2 = 7.2pt
subsection/afterskip = {18pt} % 段后间距
}
\usepackage{fancyhdr} \pagestyle{fancy} % 导入页眉页脚包,并使用fancy样式
\fancyhf{}\fancyhead[EC]{\zihao{5}xxx博士学位论文} \fancyhead[OC]{\zihao{5}\leftmark} % 按要求更改页眉内容
\fancyfoot[C]{\zihao{-5}\thepage} % 在页脚处加入页码
\fancypagestyle{plain}{
\fancyhf{}
\fancyhead[EC]{\zihao{5}xxx博士学位论文}
\fancyhead[OC]{\zihao{5}\leftmark}
\fancyfoot[C]{\zihao{-5}\thepage}
} % 更改每一chapter开头使用的plain样式
\begin{document}
\include{chapter1}
\end{document}
```
输出如下,去掉绪论前面的1:
![](https://pics.latexstudio.net/data/images/201912/c8001184b00ffba.png)
1 回答
1
如果需求是「只在 `\chapter` 所在页,去掉页眉部分的文字,而保留页眉部分的横线、页脚的页码数字」,那么注释这一行就行
```tex
% \fancyhead[OC]{\zihao{5}\leftmark}
```
即改成
```tex
\fancypagestyle{plain}{
\fancyhf{}
\fancyhead[EC]{\zihao{5}xxx博士学位论文}
% \fancyhead[OC]{\zihao{5}\leftmark}
\fancyfoot[C]{\zihao{-5}\thepage}
} % 更改每一chapter开头使用的plain样式
```
你的回答
请登录后回答
你的回答将会帮助更多人,请务必认真回答问题。