General ⇒ how to get biblogragaphy to appear on toc
how to get biblogragaphy to appear on toc
this is all i have for the bib stuff in my tex file.
\bibliographystyle{apalike}
\bibliography{sa}
thanks for ur help
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
how to get biblogragaphy to appear on toc
one possibility is \addcontentsline:
Code: Select all
\addcontentsline{toc}{chapter}{Bibliography}
Re: how to get biblogragaphy to appear on toc
\addcontentsline{toc}{chapter}{\bibname}
bibligrpahy appears on contents page but what happens is it says the biblograpgy and evaluation are on the same page , 45.
clearly the evaluation is on page 45 and bib in on 46.
how do i change this?
how to get biblogragaphy to appear on toc
i have also done that but same problemStefan_K wrote:Hi ma501th,
one possibility is \addcontentsline:StefanCode: Select all
\addcontentsline{toc}{chapter}{Bibliography}
how to get biblogragaphy to appear on toc
Code: Select all
\clearpage
\addcontentsline{toc}{chapter}{\bibname}
\bibliographystyle{apalike}
\bibliography{sa}