Theses, Books, Title pagesHow can I get rid of the first "Chapter #" header?

Classicthesis, Bachelor and Master thesis, PhD, Doctoral degree
templateuser
Posts: 679
Joined: Tue Mar 03, 2015 4:01 pm

How can I get rid of the first "Chapter #" header?

Post by templateuser »

I'm using this template for my Master Thesis and until now everything is working fine,
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

Recommended reading 2024:

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

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

User avatar
Vel
Site Moderator
Posts: 463
Joined: Fri Jun 29, 2012 1:20 am

How can I get rid of the first "Chapter #" header?

Post by Vel »

Hi Morla,

To adjust the chapter headings you need to use the titlesec package. Here's an example that, once you put it into your preamble, will remove the Chapter 1, Chapter 2, etc text:

Code: Select all

\usepackage{titlesec}
\titleformat{\chapter}{}{}{0em}{\bf\LARGE}
For anyone else interested in customizing the chapter heading, here's another example which makes the chapter text smaller and centered to give you an idea of how to use this command:

Code: Select all

\usepackage{titlesec}
\titleformat{\chapter}{\normalfont\centering}{CHAPTER \MakeUppercase{\thechapter}}{1em}{}
Cheers,
Vel
Founder and administrator of LaTeXTemplates.com and LaTeXTypesetting.com
templateuser
Posts: 679
Joined: Tue Mar 03, 2015 4:01 pm

Re: How can I get rid of the first "Chapter #" header?

Post by templateuser »

Thanks a lot!
It worked perfectly =)

Morla
User avatar
Vel
Site Moderator
Posts: 463
Joined: Fri Jun 29, 2012 1:20 am

Re: How can I get rid of the first "Chapter #" header?

Post by Vel »

Excellent, good luck with your thesis!
Founder and administrator of LaTeXTemplates.com and LaTeXTypesetting.com
templateuser
Posts: 679
Joined: Tue Mar 03, 2015 4:01 pm

Re: How can I get rid of the first "Chapter #" header?

Post by templateuser »

hi Vel,

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
User avatar
Vel
Site Moderator
Posts: 463
Joined: Fri Jun 29, 2012 1:20 am

How can I get rid of the first "Chapter #" header?

Post by Vel »

Hi,

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
Founder and administrator of LaTeXTemplates.com and LaTeXTypesetting.com
templateuser
Posts: 679
Joined: Tue Mar 03, 2015 4:01 pm

Re: How can I get rid of the first "Chapter #" header?

Post by templateuser »

Is it possible to combine the two? so instead of saying e.g.

Chapter 1
Introduction

It says

1. Introduction

like in the sections and subsections?

ebbbe
User avatar
Vel
Site Moderator
Posts: 463
Joined: Fri Jun 29, 2012 1:20 am

How can I get rid of the first "Chapter #" header?

Post by Vel »

Hey,

Yep, we just have to use our good friend the titlesec package Just add this to your preamble:

Code: Select all

\usepackage{titlesec}
\titleformat{\chapter}{}{}{0em}{\bf\LARGE\thechapter.~}
Cheers,
Vel
Founder and administrator of LaTeXTemplates.com and LaTeXTypesetting.com
templateuser
Posts: 679
Joined: Tue Mar 03, 2015 4:01 pm

Re: How can I get rid of the first "Chapter #" header?

Post by templateuser »

Hey Vel, U doing great job. Can you also help me, how can I add tab spacing, for eg., what we do in word, in order to align all number in a column like in the below eg.

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
User avatar
Vel
Site Moderator
Posts: 463
Joined: Fri Jun 29, 2012 1:20 am

Re: How can I get rid of the first "Chapter #" header?

Post by Vel »

Hi,

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
Founder and administrator of LaTeXTemplates.com and LaTeXTypesetting.com
Post Reply