General ⇒ how to display disclaimer, abstract on toc
how to display disclaimer, abstract on toc
i was wondering how to add abstract and disclaimer into the toc but not as chpater headings. I have seen some pdf files that these heading appear as roman numbers.
and also what order is best, toc, disclaimer, abstract?
or disclaimer, abstract then toc.
can you please advise me
thanks
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 display disclaimer, abstract on toc
I cannot advise concerning the order, how the content could be sorted. You may look into similar papers, reports and compare. Perhaps you have an advisor who can tell you the common practice or requirements. But we probably can help you to fulfil those.
In general you could add abstract and disclaimer with chapter* and section*, so they dont get numbered and won't apear inside the toc. But that you may do with \addcontentsline or \addtocontents.
If this is not clear, tell us your specific needs, how abstract and disclaimer should appear in detail.
Stefan
Re: how to display disclaimer, abstract on toc
I would like disclaimer and abstract to appear on contens page but as not as chapter headings but as roman numbers. Then the chapters should appear normally with numerical page number (as default)
I have attached a screen shot of a report which i have obtained online which shows how i would like the disclaimer and abstract to appear on toc
- Attachments
-
- Untitled.jpg (13.04 KiB) Viewed 10853 times
Re: how to display disclaimer, abstract on toc
i managed to find way for this to appear on contents page with no problem, but the only issue is the disclaimer and abstract appear as numerical number, is there anyway these two heading could be numbered as roman numbers?
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
how to display disclaimer, abstract on toc
write
Code: Select all
\pagenumbering{roman}
Write
Code: Select all
\pagenumbering{arabic}
Stefan
how to display disclaimer, abstract on toc
Code: Select all
Disclaimer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ii
Abstract . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . iii
Acknowledgements . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
i have put
Code: Select all
\pagenumbering{roman}
Code: Select all
\pagenumbering{arabic}
please help
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Re: how to display disclaimer, abstract on toc
put \clearpage (or \cleardoublepage) before \pagenumbering{arabic}, to avoid the influence to the Acknowledgements page.
Stefan
how to display disclaimer, abstract on toc
Code: Select all
Disclaimer . . . . . . . . . . ..ii
Abstract . . . . . . . . . . . . . . . . iii
Acknowledgements . . . . . . . . . iv
How do i get latex to number disclaimer as i rather than ii and have
abstract as ii
acknowledgements as iii
please help
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
how to display disclaimer, abstract on toc
so you have a list of tables before the disclaimer. What page number should the list get?
For the disclaimer starting with i just write \clearpage and \pagenumbering{roman} directly before it:
Code: Select all
\listoftables
\clearpage
\pagenumbering{roman}
% now the disclaimer
Re: how to display disclaimer, abstract on toc
is this minor problem i can solve?
thanks