Document Classes ⇒ Chapter numbering problem..
-
- Posts: 97
- Joined: Fri Sep 04, 2009 4:56 pm
Chapter numbering problem..
I am creating a book using book class with MikTex. As i am new to latex, I don't know how to add a "chapter image", which is already stored as .eps format, instead of \chapter command.
\chapter{Introduction} -- produces a style which I really don't want.
So, if i delete the \chapter command from my code, the section number starts from 0.1,0.2... and so on.
0.1 Introduction to chapter
0.2 General Issues
Hence I need to insert the chapter figure and as well as I need the section to start from numbering
1.1 Introduction to chapter
1.2 General Issues
I don't use any kind of special packages.. If there is any that I really want to use.. please give me a example of the same..
Thanks in advance..
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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Chapter numbering problem..
Code: Select all
\stepcounter{chapter}
Best regards
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 97
- Joined: Fri Sep 04, 2009 4:56 pm
Re: Chapter numbering problem..
I am continuosly facing problem while adding "EPS" instead of my chapter name.
I have already designed the chapter name and chapter title in that EPS file, which is "Chapter-01.EPS". When I include that file, instead of "\chapter" command the remaining section numbering starts from 0.1 instead of 1.1.
Since I have 2 chapters, i have added the chapter titles to both of the chapters. After adding the chapter figures to individual chapters, the table of content takes the both chapters as a single chapter.
So, ultimately what i want is, while adding the chapter figures the section numbering should be as follows.
1.1 Introduction
1.1.1 Basic...
1.2 Addit...
.
.
.
2.1 Intro...
2.2 General...
.
.
.
and my table of contents should be according to the chapters. I've added the ".tex" file..
Thanks in advance...
Muthu...
- Attachments
-
- thesis.tex
- (6.99 KiB) Downloaded 256 times
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Chapter numbering problem..
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 97
- Joined: Fri Sep 04, 2009 4:56 pm