#Header

1 messages · Page 1 of 1 (latest)

fervent moat
#

I'm unsure what's not working here

#

Here is a MWE"

#
\documentclass[12pt]{article}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead[R, C]{}
\fancyhead[L]{Left Side Header Text}
\usepackage{lipsum}

\begin{document}

\title{Title}
\author{Leothelion}
\maketitle


\section{Section Title}
\lipsum[1-3]

\section{Section Title 2}
\lipsum[4-8]
\end{document}
#

then use \thispagestyle{fancy}

#

if you want to be page-specific

#

No, you do it after the fact (the documentation specifies this)

#

So do it after \maketitle

#

It gives me the heading for the title page but not thereafter.

#

\pagestyle{plain} or {empty} should revert to default blank. there's no single correct approach

#

All good, happy TeXing