LyXLyx

Information and discussion about LyX, a WYSIWYM editor, available for Linux, Windows and Mac OS X systems.
Post Reply
and8238
Posts: 2
Joined: Sat Mar 29, 2014 12:03 am

Lyx

Post by and8238 »

Hi,
I am writing my thesis and using an Article Document Class. However at each Part the sections/subsections numbering are numbered one after each other rather than according to the Part I am working with

For example, a Section in Part 4 of the Thesis is numbered as Section 21 rather than Section 4.3

Thank you

Recommended reading 2024:

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

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

StarValkyrie
Posts: 89
Joined: Fri Jan 24, 2014 12:42 am

Lyx

Post by StarValkyrie »

Put this in the preamble:

Code: Select all

\renewcommand{\thepart}{\arabic{part}}
\renewcommand{\thesection}{\thepart .\arabic{section}}
Post Reply