LyX ⇒ Unregular numbering
Unregular numbering
Let's say I started a document with regular (automatic) paragraph numbers 1,2,3,4,5 but now I need to make a new version and move paragraph 3 to the end (to position 6) but let the paragraph numbers unchanged... (and some more similar changes as well)
I would also like to know how to add additional paragraphs into an existing list and name them accoring to set rules - e.g. I have paragraphs 1,2,3,4,5 and I need to insert some new paragraphs between paragraphs 3 and 4 and call them 3a, 3b, 3c etc..
how to do that? (preferably in LyX)
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
Unregular numbering
\setcounter
or \addtocounter
, such as
Code: Select all
\setcounter{part}{7}
Re: Unregular numbering
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
Unregular numbering
As you would like to have static numbering, just don't use automatic numbering. You could use "unnumbered" headings but write numbers in the title text. Unusual, however you don't want automatic numbering.auvajs wrote:Let's say I started a document with regular (automatic) paragraph numbers 1,2,3,4,5 but now I need to make a new version and move paragraph 3 to the end (to position 6) but let the paragraph numbers unchanged... (and some more similar changes as well)
Stefan