General ⇒ Headers
Headers
I have the following problem:
I'm writing a document with several sections which I don't want to be numerated. For example, it may have 3 sections:
-Research
-Teaching
-Service
However, I want the page numbering to appear like this:
A1, A2, A3,... for the first section (Research)
B1, B2, B3,... for the second section (Teaching)
C1, C2, C3,... for the third section (Service)
any idea on how can I achieve this?
thanks a lot!
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Headers
Code: Select all
\documentclass{article}
\usepackage{lipsum} % just to write blind text
\begin{document}
\setcounter{page}{1}
\renewcommand{\thepage}{A\arabic{page}}
\section*{Research}
\lipsum[1-20]
\newpage
\setcounter{page}{1}
\renewcommand{\thepage}{B\arabic{page}}
\section*{Teaching}
\lipsum[1-20]
\newpage
\setcounter{page}{1}
\renewcommand{\thepage}{C\arabic{page}}
\section*{Service}
\lipsum[1-20]
\end{document}