使用 fancyhdr 时标头出现问题

使用 fancyhdr 时标头出现问题

我是 LaTeX 新手,在使用 fancyhdr 包创建页眉时遇到了问题。当我包含它时,文本与页眉的上部重叠,我尝试使用命令进行修复\setlength\headheight{3cm}。但其余页面的文本比此页面低,文档的格式被破坏了。抱歉我的英语不好,我不是英语母语者,我希望你能理解我。我还包含了我的代码和结果。

提前致谢。

\documentclass[10pt]{article}
\usepackage[spanish,es-noindentfirst]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{etex}
\usepackage{xcolor}
\usepackage{graphicx}
\usepackage{titlesec}
\usepackage{setspace}
\usepackage[font={small},labelfont={bf,small},
   justification=centerlast]{caption}
\usepackage[paperwidth=195mm,paperheight=265mm,twoside,
inner=2.2cm,outer=2.2cm,top=2.25cm,bottom=2.25cm]{geometry}
\usepackage[colorlinks,linkcolor=black,urlcolor=black,
   citecolor=black,bookmarks=true]{hyperref}
\usepackage{fancyhdr}
\usepackage{blindtext}
\setlength\headheight{3cm}
\begin{document}
\thispagestyle{fancy}
\fancyhead[L]{\includegraphics[width=0.075\textwidth]{logos/Logo_EPN} \\ \normalsize Year 2019}
\fancyhead[C]{\textbf{\Large\textbf{\textsc{Escuela Politécnica Nacional}}\\ \large \textbf{\textsc{Math 1 $\star$ Summary}}\\ \large\textsc{Functions}}}
\fancyhead[R]{\includegraphics[width=0.075\textwidth]{logos/Buho_EPN} \\ \normalsize Autor's Name}  


\section{Section One}
\blindtext
\medskip
\blindtext
\medskip
\blindtext
\medskip
\section{two}
\blindtext
\medskip
\blindtext
\medskip
\blindtext
\medskip
\blindtext
\end{document} 

图。1

图2

答案1

我同意@Johannes_B 的观点,你应该考虑其他形式的标题创建。但是,你只能修改headheight第一页使用的样式。

片段

\fancypagestyle{mypagestyle}{%
%   \renewcommand{\headrulewidth}{1pt}%
    \fancyhf{}%
    \fancyhead[L]{\includegraphics[width=0.075\textwidth]{logos/Logo_EPN} \\ \normalsize Year 2019}
    \fancyhead[C]{\textbf{\Large\textbf{\textsc{Escuela Politécnica Nacional}}\\ \large \textbf{\textsc{Math 1 $\star$ Summary}}\\ \large\textsc{Functions}}}
    \fancyhead[R]{\includegraphics[width=0.075\textwidth]{logos/Buho_EPN} \\ \normalsize Autor's Name}  
    \setlength\headheight{3cm}
}


\begin{document}
\thispagestyle{mypagestyle}

例子

\documentclass[10pt]{article}
\usepackage[spanish,es-noindentfirst]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{etex}
\usepackage{xcolor}
\usepackage{graphicx}
\usepackage{titlesec}
\usepackage{setspace}
\usepackage[font={small},labelfont={bf,small},
   justification=centerlast]{caption}
\usepackage[paperwidth=195mm,paperheight=265mm,twoside,
inner=2.2cm,outer=2.2cm,top=2.25cm,bottom=2.25cm]{geometry}
\usepackage[colorlinks,linkcolor=black,urlcolor=black,
   citecolor=black,bookmarks=true]{hyperref}
\usepackage{fancyhdr}
\usepackage{blindtext}


\fancypagestyle{mypagestyle}{%
%   \renewcommand{\headrulewidth}{1pt}%
    \fancyhf{}%
    \fancyhead[L]{\includegraphics[width=0.075\textwidth]{logos/Logo_EPN} \\ \normalsize Year 2019}
    \fancyhead[C]{\textbf{\Large\textbf{\textsc{Escuela Politécnica Nacional}}\\ \large \textbf{\textsc{Math 1 $\star$ Summary}}\\ \large\textsc{Functions}}}
    \fancyhead[R]{\includegraphics[width=0.075\textwidth]{logos/Buho_EPN} \\ \normalsize Autor's Name}  
    \setlength\headheight{3cm}
}


\begin{document}
\thispagestyle{mypagestyle}

\section{Section One}
\Blindtext
\section{two}
\Blindtext

\end{document} 

相关内容