
履歴書の場合、本文で引用せずに出版物のリストを印刷したいです。例:
\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}
[RME11]
残念ながら、これによりエントリの前に括弧で囲まれたキーが配置されます。
もちろん、このスタイルを使用することもできますauthoryear
が、そうすると、参照内の名前の書式が希望どおりになりません。alphabetic
括弧やキーを削除して、このスタイルに従う最も簡単な方法は何ですか?
私は biber と biblatex を使用しています (そして、それを変更するつもりはありません)。
答え1
Andrew Swann が指摘したように、ラベル (biblatex ではラベルと呼びます) は、書誌環境を再定義することで抑制できます。
\defbibenvironment{bibliography}
{\list
{}
{\setlength{\leftmargin}{\bibhang}%
\setlength{\itemindent}{-\leftmargin}%
\setlength{\itemsep}{\bibitemsep}%
\setlength{\parsep}{\bibparsep}}}
{\endlist}
{\item}