BibTeX, biblatex and biberHow do I change Title in BibTeX

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
etym
Posts: 4
Joined: Tue Jun 07, 2011 5:50 pm

How do I change Title in BibTeX

Post by etym »

Hey,

I'm writing in memoir class and want to change the title "Litteratur" to "Literaturliste" and have it to be a \chapter, since I have a speciel layout to the chapters.

In my index.tex fil I have:

Code: Select all

\include{bib/biblist}
And the biblist.tex contain:

Code: Select all

\bibliographystyle{plainnat}
\bibliography{bib/list}
\nocite{*}
I have try with

Code: Select all

\chapter*{Litteraturliste}
\addcontentsline{toc}{chapter}{Litteraturliste}
But then there is one page with the right chapter layout and a page where the litteratur is listing.

Hobe it is understandable
Thanks for your time

./tym
Last edited by Stefan Kottwitz on Tue Jun 07, 2011 6:53 pm, edited 1 time in total.

Recommended reading 2024:

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

NEW: TikZ book now 40% off at Amazon.com for a short time.

Stefan Kottwitz
Site Admin
Posts: 10345
Joined: Mon Mar 10, 2008 9:44 pm

How do I change Title in BibTeX

Post by Stefan Kottwitz »

Hi etym,

welcome to the board!
you can redefine \bibname. Here's a minimal example showing Literaturliste in the heading:

Code: Select all

\documentclass{memoir}
\usepackage[utf8x]{inputenc}
\renewcommand*{\bibname}{Literaturliste}
\begin{document}
\bibliographystyle{plainnat}
\bibliography{bib/list}
\nocite{*}
\end{document}
If you use babel, \addto will be required instead, for example with ngerman option:

Code: Select all

\addto\captionsngerman{\renewcommand*{\bibname}{Literaturliste}}
Stefan
LaTeX.org admin
etym
Posts: 4
Joined: Tue Jun 07, 2011 5:50 pm

How do I change Title in BibTeX

Post by etym »

Stefan_K wrote:Hi etym,

welcome to the board!
you can redefine \bibname. Here's a minimal example showing Literaturliste in the heading:

Code: Select all

\documentclass{memoir}
\usepackage[utf8x]{inputenc}
\renewcommand*{\bibname}{Literaturliste}
\begin{document}
\bibliographystyle{plainnat}
\bibliography{bib/list}
\nocite{*}
\end{document}
If you use babel, \addto will be required instead, for example with ngerman option:

Code: Select all

\addto\captionsngerman{\renewcommand*{\bibname}{Literaturliste}}
Stefan

Thanks. I up running now.
Good evening!

./tym
Post Reply