Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Renaming and resetting Chapter in LaTeX

Tags:

latex

I have two questions in LaTeX:

  1. How to reset the chapter counter to 1 or to set it to any other number?
  2. How to rename Chapter 1 to Paper A? To rename it to Paper 1, I have this solution:

    \renewcommand\chaptername{Paper}
    

The first chapter then becomes Paper 1. But I can't get to rename 1 to A so as to get Paper A.

like image 782
yCalleecharan Avatar asked Jun 27 '10 20:06

yCalleecharan


2 Answers

For the first:

\setcounter {chapter} {1}

For the second, try using \Alph - this might work:

\setcounter {chapter} {\Alph{1}}

See this.

like image 76
cristobalito Avatar answered Oct 22 '22 05:10

cristobalito


This is from memory, but for the first:

\setcounter{chapter}{1}

And for the second:

\renewcommand{\chaptername}{Paper}
\renewcommand{\thechapter}{\Alph{chapter}}
like image 38
Sophie Alpert Avatar answered Oct 22 '22 05:10

Sophie Alpert