General ⇒ Problem with Chapters
Problem with Chapters
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

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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Problem with Chapters
Best regards
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Problem with Chapters
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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Problem with Chapters
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Problem with Chapters


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