Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to rename sections in latex

How can i give another name to the main sections of a scientific paper in Latex? So instead of 'References' i wanna write a different title, instead of 'Abstract' another, and so on.

Regards

like image 545
qwerty Avatar asked Jun 26 '10 19:06

qwerty


People also ask

How do I change the section number in LaTeX?

LaTeX lets you change the appearance of the sectional units. As a simple example, you can change the section numbering to upper-case letters with \renewcommand\thesection{\Alph{section}} in the preamble (see \alph \Alph \arabic \roman \Roman \fnsymbol : Printing counters).

How do I change a chapter to a section in LaTeX?

Just use \renewcommand{\chaptername}{Section} in the preamble (preferably).


3 Answers

Redefine any of the following commands:

  • Abstract: \abstractname
  • Appendix: \appendixname
  • Bibliography: \bibname
  • Chapter: \chaptername
  • Contents: \contentsname
  • Index: \indexname
  • List of Figures: \listfigurename
  • List of Tables: \listtablename
  • Part: \partname
  • References: \refname

So, for example,

\renewcommand\refname{My References}

The list comes from The LaTeX Companion, 2nd edition, page 34.

like image 89
David Z Avatar answered Sep 20 '22 21:09

David Z


For references \bibname is defined in the book class, but not in the article class. The latter is using \refname.

like image 24
Stefan Avatar answered Sep 21 '22 21:09

Stefan


thanks! helped me a lot.

Just to help other fellas, it did not work for me before \begin{document}

I did it just before \part as below:

\renewcommand\partname{Capítulo}
\part{\textit{Conjuntura regulatória}}
\chapter{\large MATRIZ ENERGÉTICA BRASILEIRA}

worked as a charm.

like image 32
Elton Avatar answered Sep 19 '22 21:09

Elton