Theses, Books, Title pages ⇒ How can I get rid of the first "Chapter #" header?
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
How can I get rid of the first "Chapter #" header?
I have just one problem:
I want to get rid of the first header of each Chapter (Chapter 1 Chapter 2...) which appears above the Chapter name that I define.
I think I have to change something in the .cls file, but I don't know which parameter.
Thanks a lot in advance for some help!
Morla
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
How can I get rid of the first "Chapter #" header?
To adjust the chapter headings you need to use the

Code: Select all
\usepackage{titlesec}\titleformat{\chapter}{}{}{0em}{\bf\LARGE}
Code: Select all
\usepackage{titlesec}\titleformat{\chapter}{\normalfont\centering}{CHAPTER \MakeUppercase{\thechapter}}{1em}{}
Vel
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Re: How can I get rid of the first "Chapter #" header?
It worked perfectly =)
Morla
Re: How can I get rid of the first "Chapter #" header?
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Re: How can I get rid of the first "Chapter #" header?
Would you mind adding more information about modifying the title page of each chapter?
My thesis consists of 5 chapters. In every chapter, I need to mention different co-authors and different journals where my manuscript is published.
Would that be possible to do that? Thank you and look forward to your reply.
andhiex
How can I get rid of the first "Chapter #" header?
I would recommend you keep the chapter titles as they are and simply add that information under the title of each chapter (e.g. directly under
\chapter{Chapter Title Here}
in Chapter1.tex
of the template).Then, I would add a
\clearpage
right before your first section of the chapter so that you now effectively have Chapter 1 <newline> Chapter Title <newline> <Journals/Co-authors> <newpage> <chapter content>.Cheers,
Vel
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Re: How can I get rid of the first "Chapter #" header?
Chapter 1
Introduction
It says
1. Introduction
like in the sections and subsections?
ebbbe
How can I get rid of the first "Chapter #" header?
Yep, we just have to use our good friend the

Code: Select all
\usepackage{titlesec}\titleformat{\chapter}{}{}{0em}{\bf\LARGE\thechapter.~}
Vel
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Re: How can I get rid of the first "Chapter #" header?
ABC 1
DEFghii 2
GHIJK 3
and so on....
and second query is how can I include some special characters like symbol of micro (µ) in latex ?
Thank you in advance !
Anshu
Re: How can I get rid of the first "Chapter #" header?
You should use a table in LaTeX to align text rather than tab characters. There's a table template on the website to show you how to use them properly if you haven't made one before. Alternatively you could use a parbox, see here for documentation: http://en.wikibooks.org/wiki/LaTeX/Boxes
The symbol for mu is printed with $\mu$, you can find a list of common symbols here: http://www.artofproblemsolving.com/Wiki ... eX:Symbols or the comprehensive list here: http://www.tex.ac.uk/tex-archive/info/s ... ols-a4.pdf
Cheers,
Vel