如何获得此作者年份类似的引用/参考书目样式?

如何获得此作者年份类似的引用/参考书目样式?

我真的很喜欢这份文件的引用和参考书目。

到目前为止,我一直采用这种风格:

\usepackage[backend=biber,style=authoryear-icomp,firstinits=true,ibidpage=true]{biblatex} 

通过这个(和一些调整),我已经接近目标了,但还没有到达。

谁能帮我?

梅威瑟:

\documentclass[a4paper,12pt]{scrartcl}
\usepackage[backend=biber,style=authoryear-icomp,firstinits=true,ibidpage=true]{biblatex} 
\usepackage[babel,german=quotes]{csquotes} 
\addbibresource{\jobname.bib}
\usepackage{filecontents}

\begin{filecontents}{\jobname.bib}
@Book{doerre,
  title     = {Bewährungsproben für die Unterschicht?},
  publisher = {Campus-Verl.},
  year      = {2013},
  author    = {Dörre, Klaus},
  series    = {International labour studies},
  address   = {Frankfurt am Main [u.a.]},
  pages     = {423 S.},
  subtitle  = {soziale Folgen aktivierender Arbeitsmarktpolitik},
}
\end{filecontents}

\begin{document}

test \textcite{doerre}

\printbibliography

\end{document}

答案1

它看起来是一种相当正常的authoryear风格,只做了一些修改。

\documentclass[ngerman]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage[german=guillemets]{csquotes} 
\usepackage[backend=biber, style=authoryear, maxbibnames=999, maxcitenames=2, mincitenames=1]{biblatex} 

\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@Book{doerre,
  title     = {Bewährungsproben für die Unterschicht?},
  publisher = {Campus-Verl.},
  year      = {2013},
  author    = {Dörre, Klaus},
  series    = {International labour studies},
  address   = {Frankfurt am Main},
  pagetotal = {423},
  subtitle  = {Soziale Folgen aktivierender Arbeitsmarktpolitik},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}

\renewcommand*{\mkbibnamefamily}{\textsc}

\renewcommand*{\multinamedelim}{\addsemicolon\space}%
\renewcommand*{\finalnamedelim}{\addspace\bibstring{and}\space}%

\DeclareFieldFormat{postnote}{#1}
\DeclareFieldFormat{multipostnote}{#1}

\DeclareNameAlias{sortname}{family-given}

\DefineBibliographyStrings{german}{and = {u\adddot}}


\begin{document}
test \autocite{doerre} lorem \autocite{sigfridsson,worman,companion}

\printbibliography
\end{document}

示例输出 我找不到使用“ibid”或压缩特征的风格的证据,因此我以此为authoryear基础。

相关内容