LyX ⇒ Equation numbering
Equation numbering
I'm currently writing my master's thesis with Lyx and I have a question :
Is it possible to number the equations without the number of the section before ? For now, when I insert a new numbered formula, it is numbered like that : (4.13), meaning the 13th equation in the fourth section. But I want it in the following format : (13), meaning the 13th equation of all the document.
For info, I use Lyx 1.6.6.1 and the AMSmath package.
Thanks in advance for your help
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
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Equation numbering
welcome to the board!
To achieve this, you could redefine \thesection, like
Code: Select all
\renewcommand\thesection{\arabic{section}}
Code: Select all
\usepackage{chngcntr}
\counterwithout{equation}{section}
Insert these lines in the document preamble.
Stefan
Re: Equation numbering
Thanks for your answer, it's working like a charm
