GeneralChange the number formatting from chapters and sessions.

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
Grinvon
Posts: 6
Joined: Mon Sep 01, 2008 1:31 pm

Change the number formatting from chapters and sessions.

Post by Grinvon »

Hi!

My doc type is styled as a book and my chapers are numbered like
0.1 Chapter 1
0.1.1 Session 1
0.1.2 Session 2
0.2 Chapter 2
When I change to article style, it´s get the type I wonder like:
1.0 Chaper 1
1.1 Session 1
.
.
.
Just I need to use like book, because the sumary thats make it in another page. I don´t know how to use number formatting like a article one style.

Thanks all.

Recommended reading 2024:

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

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

Stefan Kottwitz
Site Admin
Posts: 10345
Joined: Mon Mar 10, 2008 9:44 pm

Change the number formatting from chapters and sessions.

Post by Stefan Kottwitz »

Hi Grinvon,

why don't you use \chapter with book?

Code: Select all

\chapter{Chapter 1}
\section{Session 1}
\section{Session 2}
\chapter{Chapter 2}
Stefan
LaTeX.org admin
Grinvon
Posts: 6
Joined: Mon Sep 01, 2008 1:31 pm

Re: Change the number formatting from chapters and sessions.

Post by Grinvon »

Thanks Stefan. Fixed!
Post Reply