I want to use references like "[1]" in my text, but "1." in the bibliography. I did find the exact same question:
How to use 1. (number followed by dot) format instead of [1] format in bibliography
However, the solution from Gonzalo Medina does not work for me (meaning there is no effect: I still have "[1]" in my bibliography, instead of the desired "1.").
MWE:
\documentclass{scrbook}
\usepackage[style=numeric-comp, backend=biber]{biblatex}
\addbibresource{bibliography.bib}
\makeatletter
\renewcommand\@biblabel[1]{#1.}
\makeatother
\begin{document}
\chapter{TestTest}
Test \cite{ADA}.
\printbibliography
\end{document}
where the file bibliography.bib contains
@BOOK{ADA,
author = {Example Author},
title = {Random Title},
publisher = {Some Publisher},
year = {2003},
location = {City},
edition = {2},
}
Is the solution not working any more, or is there anything wrong with my Tex distribution (up-to-date Texlive)?
(Even without a working solution, I would appreciate it, if someone could confirm that this problem exists when using the above MWE.)
scrbook,book, andarticleclasses. – darthbith Oct 24 '14 at 14:49