Я пытаюсь разместить на первой странице причудливый верхний и нижний колонтитулы, но не могу понять, как разместить нижние колонтитулы на всех страницах. Я попытался найти разрыв страницы и вставил команду \fancyhead{}
, и все заголовки исчезли, кроме первой страницы. Однако я хочу уменьшить интервал между заголовками на остальных страницах, где он пустой. Есть предложения? Пожалуйста и спасибо.
Код, который я использую, приведен ниже:
\usepackage{fancyhdr}
\pagestyle{fancy}
\newcommand{\Header}[3]{
\fancyhf{} % Clear header/footer
\renewcommand{\headrulewidth}{0pt} % Remove header rule
\fancyhead[C]{%
\begin{tabular}{ @{} p{\textwidth} @{} }
\textbf{\textsf{#1}}\hfill \textbf{\textsf{#2}} \\
\hline
\centering \textsf{\small{#3}}
\end{tabular}}
\setlength{\headheight}{19pt}
\cfoot{\scriptsize \thepage}
\lfoot{\scriptsize \copyright 2019 Name}}
Мой документ выглядит следующим образом:
\documentclass[11pt, a4paper, twoside]{article}
\usepackage[a4paper,top=2.5cm,bottom=2cm,left=2.54cm,right=2.54cm,marginparwidth=1.75cm]{geometry}
\usepackage[utf8]{inputenc}
\begin{document}
\Header{Class $-$ Study Guide}{21 February 2019}{Exam will be 10 short answer and 1 essay. We have to know theories, as well as the implications and problems with the theories.}
\thispagestyle{fancy}%%% Don't know about this%%%%
\section{Logical Positivists}
\lipsum
\clearpage
\fancyhead{}%%%%% only deleting header, not reducing spacing%%%%
\section{new stuff}
\lipsum
\end{document}