GeneralSeparate section numbering

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
andreaskn
Posts: 2
Joined: Sat Mar 21, 2015 3:37 pm

Separate section numbering

Post by andreaskn »

Hi,

I'm writing a report for a school project where I have sections and subsections. After the 6th section I want to restart the numbering and begin with roman numbers and then go back to arabic and continue the previous numbering. Like this:

6
6.1
6.2
I
-I.1
-I.2
II
-II.1
-II.2
7
-7.1
-7.2

I read in another topic that this can be done for chapters with these two

Code: Select all

\renewcommand*{\thesection}{\arabic{section}}
\renewcommand*{\thesection}{\thechapter.\arabic{section}}
But I use article as documentclass and only sections and subsubsections.

I hope you can help me

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Re: Separate section numbering

Post by Johannes_B »

Hi and welcome.

Well, this can certainly be done, but ...
The reader will be more than confused that the numbering is changing, and then changing again.

Are you sure you want to confuse your readers?


You can replace the instances of chapter with section, and the instances of section with subsection.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
andreaskn
Posts: 2
Joined: Sat Mar 21, 2015 3:37 pm

Re: Separate section numbering

Post by andreaskn »

Maybe it isn't a good idea then..

Thank you for your help :)
Post Reply