tags:

views:

60

answers:

2

Is it possible to enumerate sections in latex not just to show 1/2/3 but rather §1/§2/§3 at the beginning?

+2  A: 

Yes, you just need to modify how the section counter is displayed: Help on LaTeX Counters

Chris
Adding `\renewcommand{\thesection}{\S\arabic{section}}` to the preamble worked.
neo
+1  A: 

According to Latex Sections, one thing to try would be:

\def\thechapter{\S chapter}

Good luck...

Chip Uni
That would change how the chapter counter is displayed, but not the section counter which is what was asked.
Rob Hyndman
Neo said, "...not just to **show** 1/2/3 but rather §1/§2/§3 at the beginning?"
Chip Uni