脚注 - 引用 - Vgl。 Jarchow/Rühmann (1988),第 190 页

脚注 - 引用 - Vgl。 Jarchow/Rühmann (1988),第 190 页

我正在撰写硕士论文,我需要这种引用风格:

是。 Jarchow/Rühmann(1988),第190页。

这应该在脚注中。

我已经做了两个变体。但仍然不正确。括号不在应在的位置。

它看起来是这样的:

\documentclass[12pt,a4paper,bibtotocnumbered,% Literaturverzeichnis ins Inhaltsverzeichnis
liststotoc,bibliography=totoc]{scrreprt}
%Chapter weiter oben beginnen
\renewcommand*\chapterheadstartvskip{\vspace*{-1.5cm}}

\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage[left=2.50cm, right=2.50cm, top=2.50cm, bottom=2.50cm]{geometry}

%Deutsche Sprache
\usepackage[ngerman]{babel}
\usepackage{xcolor}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%%%%%%%%%%%%%%%%%% %BILIOGRAPHIE  
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\usepackage[backend=bibtex, style=authoryear-icomp, sorting=nyvt, sortcase=false, maxnames=8, maxbibnames=8, minbibnames=8]{biblatex}
\addbibresource{MyCollection.bib} 
\DeclareNameAlias{sortname}{last-first} 
\DeclareNameAlias{default}{last-first} 
\renewcommand*{\multinamedelim}{\addsemicolon\addspace}




\begin{document} 

Hallo\footnote{\Parencite*[Vgl. Dai/Milkman/Katherine/Riis][S.12.]{Dai2013}}

Ja\footcite[Vgl.][12.]{Goulet2017a}
\newpage
\printbibliography[title={Literaturverzeichnis}]
\end{document}

如果有人能帮助我,我将非常感激。 在此处输入图片描述

答案1

我的风格biblatex-extbundle 可以轻松添加一些标准样式中没有的括号。

只需加载ext-authoryear-comp而不是authoryear-comp使用\DeclareDelimFormat

MWE 也使用\autocite作为 go-to 命令而不是\footcite

\documentclass[12pt,a4paper,bibliography=totoc]{scrreprt}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage{csquotes}
\usepackage[backend=bibtex, style=ext-authoryear-icomp,
  sorting=nyvt, sortcase=false,
  autocite=footnote,
  maxnames=8, minbibnames=8]{biblatex}
\addbibresource{biblatex-examples.bib} 

\DeclareInnerCiteDelims{footcite}{\bibopenparen}{\bibcloseparen}

\DeclareNameAlias{default}{family-given} 
\DeclareNameAlias{sortname}{default} 

\DeclareDelimFormat{multinamedelim}{\addsemicolon\space}

\begin{document} 
Lorem\autocite[Vgl.][12]{sigfridsson}

\printbibliography[title={Literaturverzeichnis}]
\end{document}

是。 Sigfridsson und Ryde (1998),第 12 页。

您仍在使用 BibTeX,而不是功能更强大的 Biber 后端。我建议您切换到backend=biber并告诉您的编辑器为您运行 Biber (Biblatex 与 Biber:配置我的编辑器以避免未定义的引用)。您只能通过 Biber 使用 的全套biblatex功能。

相关内容