Need to change section to Roman, but keep Arabic for for subsection and subsubsection
Asked Answered
I

1

10

I need to change my section numbering from Arabic, to Roman, beet keep the Arabic numbering in subsections and subsubsections. For example:

I. Section

1.1. Subsection

1.1.1. Subsubsection

II. Section

2.1 Subsection

...

So I know that with sections i can do "\renewcommand \thesection{\roman{section}}", but this command changes also subsections and subsubsections, like that:

I. Section

I.1. Subsection

I.1.1. Subsubsection

II Section

II.1. Subsection

...

So I need to keep subsections ans subsubsections from Roman numbering.

Indecisive answered 10/4, 2011 at 16:18 Comment(1)
I guess you'll find tex.stackexchange.com a better place to ask future questions of this kind: more and potentially better-informed responses.Wingspan
M
14

These two lines did it for me:

\renewcommand \thesection{\roman{section}}
\renewcommand \thesubsection{\arabic{section}.\arabic{subsection}}

Subsubsection also works, I assume because it takes its section number from subsection.

Mitzi answered 11/4, 2011 at 5:3 Comment(2)
Or in a "book" environment, \renewcommand \thechapter{\arabic{chapter}.\arabic{part}}Roux
Use \renewcommand \thesection{\Roman{section}} so as to have sections numbered as I, II, III...Quickly

© 2022 - 2024 — McMap. All rights reserved.