
Para um currículo, quero imprimir uma lista de publicações sem citá-las no texto. Por exemplo:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[backend=biber,natbib=true,isbn=false,style=alphabetic,sorting=ydnt]{biblatex}
\begin{filecontents*}{foo.bib}
@inproceedings{rutz2011reproducibility,
AUTHOR = {Rutz, Hanns Holger and Miranda, Eduardo and Eckel, Gerhard},
TITLE = {{Reproducibility and Random Access in Sound Synthesis}},
BOOKTITLE = {Proceedings of the 37th International Computer Music Conference},
ADDRESS = {Huddersfield},
PAGES = {515--522},
YEAR = {2011}
}
\end{filecontents*}
\addbibresource{foo.bib}
\begin{document}
\nocite{rutz2011reproducibility}
\printbibliography
\end{document}
Infelizmente, isso coloca a chave entre colchetes [RME11]
na frente da entrada:
Posso usar o authoryear
estilo claro, mas aí a formatação dos nomes nas referências não fica como eu quero. Qual é a maneira mais fácil de manter o alphabetic
estilo, mas descartando os colchetes/teclas?
Estou usando biber e biblatex (e não quero mudar isso).
Responder1
Como Andrew Swann apontou, o rótulo (é assim que o biblatex o chama) pode ser suprimido redefinindo o ambiente bibliográfico:
\defbibenvironment{bibliography}
{\list
{}
{\setlength{\leftmargin}{\bibhang}%
\setlength{\itemindent}{-\leftmargin}%
\setlength{\itemsep}{\bibitemsep}%
\setlength{\parsep}{\bibparsep}}}
{\endlist}
{\item}