我已经尝试寻找这个问题的答案好几天了。以下说法正确吗?
围兜:
\begin{filecontents}{\jobname.bib}
@book{Dilthey81,
Address = {Frankfurt am Main},
Author = {Dilthey, Wilhelm},
Date-Added = {2017-02-02 22:23:04 +0000},
Date-Modified = {2017-02-02 22:25:14 +0000},
Publisher = {Suhrkamp},
Title = {{Der Aufbau der geschichtlichen Welt in den Geisteswissenschaften}},
Year = {[1910] 1981}}
}
@book{Dilthey90,
Address = {G{\"o}tting},
Author = {Dilthey, Wilhelm},
Date-Added = {2017-02-02 22:13:38 +0000},
Date-Modified = {2017-02-03 11:03:37 +0000},
Edition = {Gesammelte Schriften. Band 1},
Publisher = {Vandenhoeck \& Ruprecht},
Title = {{Einleitung in die Geisteswissenschaft: Versuch einer Grundlegung f{\"u}r das Studium der Gesellschaft und der Geschichte}},
Year = {[1883] 1990}}
}
@book{Gadamer04,
Address = {London/New York et. al.},
Author = {Gadamer, Hans-Georg},
Date-Added = {2017-02-02 22:26:11 +0000},
Date-Modified = {2017-02-02 22:27:20 +0000},
Publisher = {Bloomsbury Publishing},
Title = {{Truth and Method}},
Year = {[1960] 2004}}
}
\end{filecontents}
主要的:
\documentclass[a4paper,oneside,BCOR=3mm,12pt,titlepage]{scrreprt}
\KOMAoptions{DIV=calc}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[polutonikogreek,ngerman,english]{babel}
\usepackage[maxlevel=3,autostyle,german=guillemets]{csquotes}
\usepackage[sfdefault]{ClearSans}
\usepackage[style=mla]{biblatex}
\bibliography{\jobname.bib}
\DeclareMultiCiteCommand{\parencites}[\mkbibparens]{\parencite}{\multicitedelim}
\begin{document}
\parencites[cf.][]{Dilthey81}[]{Dilthey90}[]{Gadamer04}
\end{document}
我知道我使用的是 MLA 格式,但我找不到引用同一作者的两部作品的参考文献。这看起来很奇怪。
答案1
您的输出看起来很奇怪,因为出现了完整的标题,但在作者标题类型的引用方案(例如 MLA)中,通常使用标题的缩写版本进行引用。为此,您需要为这些作品的条目添加一个shorttitle
字段。bib
此外,您的year
字段不正确,因为您 [ ... ]
在年份字段中包含了原始出版日期。这是不正确的。相反,您应该使用该origdate
字段。biblatex-mla
然后样式将在参考书目中正确格式化日期。
这是您的完整示例,其中已将相关字段添加到您的.bib
条目中。
\begin{filecontents}{\jobname.bib}
@book{Dilthey81,
Address = {Frankfurt am Main},
Author = {Dilthey, Wilhelm},
Date-Added = {2017-02-02 22:23:04 +0000},
Date-Modified = {2017-02-02 22:25:14 +0000},
Publisher = {Suhrkamp},
Title = {{Der Aufbau der geschichtlichen Welt in den Geisteswissenschaften}},
Shorttitle = {Aufbau},
Origdate = {1910},
Year = {1981}
}
@book{Dilthey90,
Address = {G{\"o}tting},
Author = {Dilthey, Wilhelm},
Date-Added = {2017-02-02 22:13:38 +0000},
Date-Modified = {2017-02-03 11:03:37 +0000},
Edition = {Gesammelte Schriften. Band 1},
Publisher = {Vandenhoeck \& Ruprecht},
Title = {{Einleitung in die Geisteswissenschaft: Versuch einer Grundlegung f{\"u}r das Studium der Gesellschaft und der Geschichte}},
Shorttitle={Einleitung},
Origdate={1883},
Year = {1990}
}
@book{Gadamer04,
Address = {London/New York et. al.},
Author = {Gadamer, Hans-Georg},
Date-Added = {2017-02-02 22:26:11 +0000},
Date-Modified = {2017-02-02 22:27:20 +0000},
Publisher = {Bloomsbury Publishing},
Title = {{Truth and Method}},
Origdate = {1960},
Year = {2004}
}
\end{filecontents}
\documentclass[a4paper,oneside,BCOR=3mm,12pt,titlepage]{scrartcl}
\KOMAoptions{DIV=calc}
\usepackage[polutonikogreek,ngerman,english]{babel}
\usepackage[maxlevel=3,autostyle,german=guillemets]{csquotes}
\usepackage[style=mla]{biblatex}
\DeclareMultiCiteCommand{\parencites}[\mkbibparens]{\parencite}{\multicitedelim}
\addbibresource{\jobname.bib}
\begin{document}
\parencites[cf.][]{Dilthey81}[]{Dilthey90}[]{Gadamer04}
\printbibliography
\end{document}