Theses, Books, Title pages ⇒ How can I get rid of the first "Chapter #" header?
-
templateuser
- 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
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
How can I get rid of the first "Chapter #" header?
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}Code: Select all
\usepackage{titlesec}
\titleformat{\chapter}{\normalfont\centering}{CHAPTER \MakeUppercase{\thechapter}}{1em}{}Vel
-
templateuser
- 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?
-
templateuser
- 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
-
templateuser
- 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
titlesec package Just add this to your preamble:Code: Select all
\usepackage{titlesec}
\titleformat{\chapter}{}{}{0em}{\bf\LARGE\thechapter.~}Vel
-
templateuser
- 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