GeneralMake a new Chapter containing just a Section

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
jpsw
Posts: 2
Joined: Mon Jun 20, 2011 3:26 pm

Make a new Chapter containing just a Section

Post by jpsw »

In my thesis table of contents, I would like to have my References as a 'section' (i.e. not a chapter), so as to be consistent with the front matter (List of figures, List of tables, etc.), which are all sections.

The problem I have is that the following code adds References as a section within Chapter 3. Is there a way to start a new chapter before References without it printing a new chapter heading in the TOC?

Code: Select all

\include{chapter1}	

\include{chapter2}

\include{chapter3}

\newpage
\bibliographystyle{rsc}
\phantomsection
\addcontentsline{toc}{section}{\bibname}
\bibliography{main}
Thanks for any suggestions with this.

Recommended reading 2024:

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

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

User avatar
Stefan Kottwitz
Site Admin
Posts: 10360
Joined: Mon Mar 10, 2008 9:44 pm

Re: Make a new Chapter containing just a Section

Post by Stefan Kottwitz »

Logically it belongs to chapter 3, because it's a section which follows chapter 3. I would use a chapter containing it. i.e. an appendix chapter, introduced by \appendix.

Stefan
LaTeX.org admin
jpsw
Posts: 2
Joined: Mon Jun 20, 2011 3:26 pm

Re: Make a new Chapter containing just a Section

Post by jpsw »

Thanks Stefan, but I need to use appendix for my actual appendix. I thought there might be some way to invoke a new chapter, or maybe end the previous one, so that the section is in its own "chapter", just like the sections at the start of the document.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10360
Joined: Mon Mar 10, 2008 9:44 pm

Re: Make a new Chapter containing just a Section

Post by Stefan Kottwitz »

Try if \backmatter before the bibliography solves this. Some templates support that.

Stefan
LaTeX.org admin
Post Reply