LyX ⇒ "References" to "Bibliography"
"References" to "Bibliography"
Does anyone know how to change "References" to "Bibliography" at the end of an article?
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
"References" to "Bibliography"
Code: Select all
\renewcommand{\refname}{Bibliography}
EDIT: What the hack:
Code: Select all
\documentclass{article}
\usepackage[backend=biber]{biblatex}
\begin{filecontents}{\jobname.bib}
@book{knuth,
author = {Knuth, Donald E.},
title = {The \TeX book},
date = 1984,
maintitle = {Computers \& Typesetting},
volume = {A},
publisher = {Addison-Wesley},
location = {Reading, Mass.},
langid = {english},
langidopts = {variant=american},
sortyear = {1984-1},
sorttitle = {Computers & Typesetting A},
indexsorttitle= {The TeXbook},
indextitle = {\protect\TeX book, The},
shorttitle = {\TeX book},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
\cite{knuth}
\renewcommand{\refname}{Bibliography}
\printbibliography
\end{document}
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.