Hi
I use the /chapter{Introduction} in my report class but the output gives the text
Chapter1
Introduction
There is also a huge amount of text between Chapter 1 and Introduction. The problems are :
1. How to make Chapter 1=Introduction so it only prints Introduction without the chapter 1,
2. Controlling space between Chapter1 and the section titles.
Thanks
General ⇒ Problem with Chapters
Problem with Chapters
Running Miktex 2.7 with TexnicCenter on Windows XP


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

- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Problem with Chapters
All your questions should be answered by taking a look at the KOMA Script bundle. Perhaps the memoir class could be an additional alternative. Refer to the corresponding documentations. In case of further questions, feel free to ask.
Best regards
Thorsten
Best regards
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
- Stefan Kottwitz
- Site Admin
- Posts: 10345
- Joined: Mon Mar 10, 2008 9:44 pm
Problem with Chapters
Hi GMatthews,
if you cannot use KOMA-classes or memoir, both problems can be solved with the titlesec package.
For example:
For an explanation, more features and examples have a look at the titlesec documentation.
In general I recommend the KOMA class scrreprt too, like Thorsten already advised. It provides a lot of features and is very well documented.
Stefan
if you cannot use KOMA-classes or memoir, both problems can be solved with the titlesec package.
For example:
Code: Select all
\usepackage{titlesec}
\titleformat{\chapter}
{\normalfont\Huge\bfseries}{\thechapter}{20pt}{\Huge}
\titlespacing*{\chapter} {0pt}{30pt}{20pt}
In general I recommend the KOMA class scrreprt too, like Thorsten already advised. It provides a lot of features and is very well documented.
Stefan
LaTeX.org admin
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Problem with Chapters
The idea of Stefan is much better than mine. I suggest to follow his advice and add the package with his code example.
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Problem with Chapters
LOL i figured my way through the Koma script - thanks though 

Running Miktex 2.7 with TexnicCenter on Windows XP


Re: Problem with Chapters
Thanks fellas,
You solved this problem for me aswell.
You solved this problem for me aswell.