我目前正在尝试使用设置页眉和页脚fancydhr
,页面上的所有内容均正常\part
,请参阅 screenchot,页眉和页脚未显示
梅威瑟:
\documentclass[twoside]{report}
\usepackage{lastpage}
\usepackage{fancyhdr}
\pagestyle{fancy}
% ---haut de page------
\fancyhead[L]{Pierre LE GUEN} %Entête Gauche
\fancyhead[C]{Tex} %Entête Centre
\fancyhead[R]{stackexchange.com} %Entête Droite
% ---bas de page------
\fancyfoot[L]{University} %Bas Gauche
\fancyfoot[C]{Thanks for help} %Bas Centre
\fancyfoot[R]{\thepage/\pageref{LastPage}} %Bas Droite
\usepackage{titlesec}
\usepackage{blindtext}
\titleclass{\part}{top}
\titleformat{\part}
[display]
{\raggedleft\normalfont\large\bfseries}
{\vspace{3pt}\MakeUppercase{\partname} \thepart}
{0pt}
{\vspace{1pc}\huge}
%
\titlespacing*{\part}{0pt}{0pt}{20pt}
%
\begin{document}
\part{MWE for tex}
\Blindtext
\end{document}
收件人:\part
包含页眉和页脚(参见代码)
提前致谢 !
答案1
\assignpagestyle{\part}{fancy}
后titleformat{\part}...