General ⇒ How to end the formatting from previous page...
-
- Posts: 58
- Joined: Sun Apr 27, 2008 12:50 pm
How to end the formatting from previous page...
I needed to add an appendix at the end of my thesis. I created it in a format I wanted but when I place it after "references" it carries on the same formatting as in "references", i.e. it add a line on the top with "references" written on it. The rest of the page (i.e. formatting of the title "appendix" and spacing is OK). Clearly I have to alter somehow the formatting form the previous page. Do not know how though...
Here is how it looks like in main .tex file:
% this is formatting of that previous pages - references:
\begin{multicols}{2} % \begin{multicols}{ # columns}[ header text][ space]
\begin{tiny} % tiny(5) < scriptsize(7) < footnotesize(8) < small (9)
\bibliographystyle{Latex/Classes/PhDbiblio-url2} % Title is link if provided
\renewcommand{\bibname}{References} % changes the header; default: Bibliography
\bibliography{9_backmatter/references} % adjust this to fit your BibTex file
\end{tiny}
\end{multicols}
% And this an appendix I need to add...
\include{9/Appendix}
\end{document}
Thank you,
a.k.
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
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
How to end the formatting from previous page...
-
- Posts: 58
- Joined: Sun Apr 27, 2008 12:50 pm
Re: How to end the formatting from previous page...
yes I mean that there is still a header from the previous page, i.e. "references" - I want to get rid of it...
Where shall I put \markboth command then?
Cheers.
-
- Posts: 58
- Joined: Sun Apr 27, 2008 12:50 pm
Re: How to end the formatting from previous page...
I have used that and yes, I got rid of it. But still, it is considered as a continuation of that previous thing since it is not mentioned in "Contents"...
And additional question: would you know how can i get rid of that line in a header?
Thank you a lot!
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
How to end the formatting from previous page...
And by
Code: Select all
\renewcommand{\headrulewidth}{0pt}
Stefan
-
- Posts: 58
- Joined: Sun Apr 27, 2008 12:50 pm
Re: How to end the formatting from previous page...
I think there is my problem - I should define it as a separate section but do not know how.
When I use \addtocontents command it adds it but as a subsection of previous section, i.e.
1 References
1.1 Appendix
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
How to end the formatting from previous page...
Code: Select all
\appendix
\chapter{Title of Appendix}
...
Stefan
-
- Posts: 58
- Joined: Sun Apr 27, 2008 12:50 pm
Re: How to end the formatting from previous page...
Thank you a lot.
One more think though:
It creates "Appendix A", "Published papers"
Since I have just one appendix, i would prefer to have "Appendix" instead. Where can I modify this Appendix?
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
How to end the formatting from previous page...
Code: Select all
\appendix
\setcounter{secnumdepth}{-1}
\chapter{Appendix: Published papers}
How to end the formatting from previous page...
Code: Select all
\appendix
\renewcommand\thechapter{ }
\chapter{Title of Appendix}