Biblatex 书目:格式化的条目没有附加数字

Biblatex 书目:格式化的条目没有附加数字

我想删除参考书目条目前面的数字标签([1] [2] 或 (1) (2)),这样我就只剩下我的 bibitem(没有编号)。我该怎么做?

这是我正在使用的:

\usepackage[backend=bibtex,citestyle=authoryear,
      bibstyle=chem-biochem,citetracker=true,
      maxcitenames=2,giveninits=false,
      maxbibnames=99,isbn=false,url=false,
      urldate=comp,natbib=true]{biblatex} 
\renewcommand{\mkbibnamefamily}[1]{\textsc{#1}}
\renewcommand\@biblabel[1]{} 
\DefineBibliographyStrings{english}{%
   andothers = {\em et\addabbrvspace al\adddot}
}

这是多种风格的组合(但结果正是我想要的),当然,减去我仍然想删除的围兜项目标签

梅威瑟:

\documentclass[12pt,a4paper]{book} 
\usepackage[latin1]{inputenc} 
\usepackage[german]{babel} 
\usepackage{amsmath} 
\usepackage{amsfonts} 
\usepackage{amssymb} 
\usepackage{makeidx} 
\usepackage{graphicx} 
\usepackage[left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry} 

\usepackage{csquotes} 
\usepackage[backend=bibtex,citestyle=authoryear,
      bibstyle=chem-biochem,citetracker=true,
      maxcitenames=2,giveninits=false,
      maxbibnames=99,isbn=false,url=false,
      urldate=comp,natbib=true]{biblatex} 
\renewcommand{\mkbibnamefamily}[1]{\textsc{#1}}
\renewcommand\@biblabel[1]{} 
\DefineBibliographyStrings{english}{%
   andothers = {\em et\addabbrvspace al\adddot}
}
\addbibresource{LitDaten.bib} 
\usepackage{filecontents}   
\begin{filecontents}{LitDaten.bib} 
@BOOK{Rost2005, 
AUTHOR = {Rost, Detlef H.}, 
YEAR = {2005}, 
TITLE = {Interpretation und Bewertung pädagogisch-psychologischer Studien -         
}, 
   EDITION = {2. überarb. u. erw. A.}, 
   ISBN = {978-3-825-28306-3}, 
   PUBLISHER = {Beltz}, 
   ADDRESS = {Langensalza}, 
} 
\end{filecontents} 
\begin{filecontents}{Datatop.bib} 
    @BOOK{Jeff2021, 
    AUTHOR = {Jeff, Jeff H.}, 
    YEAR = {1984}, 
    TITLE = {something important but unseen        
    }, 
       EDITION = {1283}, 
       ISBN = {123-4-567-78999-0}, 
       PUBLISHER = {penugin}, 
       ADDRESS = {seatle}, 
    } 
    \end{filecontents}

\begin{document} 

asdfasdf asd \cite{Rost2005} fasdf asdf \cite{Jeff2021} asdf asdf 

\printbibliography[title=Bibliography] 

\end{document}

答案1

我想你可以选择一双bibstyle和 ,citestlye哪个更合身。但显然,你已经想到了,仍然选择了。在这种情况下,我们可以从不使用标签的 bibstyle中bibstyle=chem-biochem“借用” ,如下所示:bibenvironmentauthoryear

\defbibenvironment{bibliography}
  {\list
     {}
     {\setlength{\leftmargin}{\bibhang}%
      \setlength{\itemindent}{-\leftmargin}%
      \setlength{\itemsep}{\bibitemsep}%
      \setlength{\parsep}{\bibparsep}}}
  {\endlist}
  {\item}

完整的 MWE:

\documentclass{article}

\usepackage[backend=bibtex,citestyle=authoryear,
      bibstyle=chem-biochem,citetracker=true,
      maxcitenames=2,giveninits=false,
      maxbibnames=99,isbn=false,url=false,
      urldate=comp,natbib=true]{biblatex} 
\renewcommand{\mkbibnamefamily}[1]{\textsc{#1}}

\DefineBibliographyStrings{english}{%
   andothers = {\em et\addabbrvspace al\adddot}
}

\defbibenvironment{bibliography}
  {\list
     {}
     {\setlength{\leftmargin}{\bibhang}%
      \setlength{\itemindent}{-\leftmargin}%
      \setlength{\itemsep}{\bibitemsep}%
      \setlength{\parsep}{\bibparsep}}}
  {\endlist}
  {\item}

\addbibresource{biblatex-examples.bib}

\begin{document}

\nocite{*}

\printbibliography

\end{document}

在此处输入图片描述

相关内容