BibTeX, biblatex and bibernatbib for thesis

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
huddiex
Posts: 5
Joined: Tue Mar 09, 2010 4:33 pm

natbib for thesis

Post by huddiex »

Hello everybody,
I want to use Author-year bibliography for my thesis. So I need it to be proper by just including the syntax into the .cls file. The lay-out is...

Code: Select all

\documentclass{upmthesis}
\usepackage[round]{natbib} 

\begin{document}
\bibliographystyle{chicago}
\bibliography{ref}
\end{document}
inside of my upmthesis.cls there are lines such as

Code: Select all

\def\thebibliography#1{ {} }
 let\endthebibliograph=\endlist
Actually for ordinary bibtex. Question: (1) can I modify the \def\thebibliography so that it suits natbib package?
(2) Can I set centered 'Bibliography' title on the top of bib 1st page and can it be included in the \def\thebibliography#1{ {} } ?
I hope someone can help, and I really appreciate it :)

Recommended reading 2024:

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

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

jocom
Posts: 25
Joined: Fri May 07, 2010 4:28 pm

natbib for thesis

Post by jocom »

Hi,

-edit- This actually only answers your 2nd question. -/edit-

I think you want to renewcommand \bibname and/or \refname.

Code: Select all

\renewcommand\bibname{{\centering Bibliography}}
\renewcommand\refname{References} % This is default btw.
Hope that helps,
jocom
Post Reply