GeneralPrologue Chapter

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
Bible-man3
Posts: 3
Joined: Fri Jul 01, 2011 8:50 pm

Prologue Chapter

Post by Bible-man3 »

How do I make a prologue chapter?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

Prologue Chapter

Post by localghost »

Code: Select all

\chapter{Prologue}

Best regards and welcome to the board
Thorsten
Bible-man3
Posts: 3
Joined: Fri Jul 01, 2011 8:50 pm

Re: Prologue Chapter

Post by Bible-man3 »

But how do you make it list it as a prologue in the table of contents?
paul
Posts: 49
Joined: Thu Apr 08, 2010 5:56 am

Prologue Chapter

Post by paul »

Bible-man3 wrote:But how do you make it list it as a prologue in the table of contents?
You mean not show up as chapter 1? If you're using the book class, or something similar, use

Code: Select all

\frontmatter
\chapter{Prologue}
...
\mainmatter
\chapter{Chapter 1}
...
\backmatter
<bibliographies, indexes, etc.>
Bible-man3
Posts: 3
Joined: Fri Jul 01, 2011 8:50 pm

Prologue Chapter

Post by Bible-man3 »

In the book class when you make the table of contents they label it 1. name 2.name so on and so forth. So how do i make it Prologue. name 1.name so on and so forth?
paul
Posts: 49
Joined: Thu Apr 08, 2010 5:56 am

Prologue Chapter

Post by paul »

Bible-man3 wrote:In the book class when you make the table of contents they label it 1. name 2.name so on and so forth. So how do i make it Prologue. name 1.name so on and so forth?
It doesn't get a number if it's in the \frontmatter section. If you're asking how to change more than that, look at the titlesec package.
Post Reply