在打印单词“ibid”以及对同一作品的后续引用时,我对\footcite
and命令的行为方式遇到了一些问题。\cite
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[backend=biber,authordate,sorting=nyt,cmsdate=both,maxcitenames=2]{biblatex-chicago}
\renewbibmacro*{cite:ibid}{\printtext[bibhyperref]{\bibstring[\mkibid]{ibidem}}}
\addbibresource{bibliography.bib}
\begin{document}
A footnote with the footcite command;\footcite[See][]{danielson1979} a second footnote using the footcite command;\footcite[][]{danielson1979} and then a footnote using cite inside the footnote command.\footnote{\cite{danielson1979}}
\end{document}
对于这个例子,我使用了这个 bib 文件:
@article{danielson1979,
title = {Toward the Analysis of Vernacular Texts: The Supernatural Narrative in Oral and Popular Print Sources},
volume = {16},
number = {3},
journal = {Journal of the Folklore Institute},
author = {Larry Danielson},
year = {1979},
pages = {130–-154}
}
我得到的结果是这样的:
\footcite
由于某种原因,如果我使用直接命令或者将\cite
命令放在命令内部, “ibid”的格式会有所不同\footnote
。
读完这里的一些内容后,我发现将\cite
命令放入 incite 中并不是使用这些命令的正确方法。但是,我有时确实需要制作带有多个参考资料和较长解释文本的脚注,我看不出将所有这些放在命令中的\footnote
第二个中会有什么效果。[...]
\footcite
答案1
如果以引用开头,则使用\Cite
大写“C” \footnote
。
biblatex
确保\footcite
s 的内容正确大写,就像脚注形成一个完整的句子(以大写字母开头,以句号结尾)。如果您手动将引文放入 a 中,\footnote
则需要手动如果脚注以引用开头,请确保biblatex
使用正确的大写字母\Cite
–句子开头的变体。\cite
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[backend=biber,authordate]{biblatex-chicago}
\renewbibmacro*{cite:ibid}{\printtext[bibhyperref]{\bibstring[\mkibid]{ibidem}}}
\addbibresource{biblatex-examples.bib}
\begin{document}
A footnote with the footcite command;\footcite[See][]{sigfridsson}
a second footnote using the footcite command;\footcite[][]{sigfridsson}
and then a footnote using cite inside the footnote command.\footnote{\Cite{sigfridsson}}
\end{document}
我认为,只要脚注包含的内容(相当多)不仅仅是该引用,在里面有\Cite
或都是完全没问题的。\cite
\footnote
没有理由写
\footnote{\Cite[See][380-382]{sigfridsson}}
在哪里
\footcite[See][380-382]{sigfridsson}
也会这样做。但绝对有理由认为
\footnote{\Cite{sigfridsson}. There is considerable disagreement about this in the literature. Lorem ipsum dolor sit amet.}
看起来更容易,甚至可能比
\footcite[There is considerable disagreement about this in the literature. Lorem ipsum dolor sit amet.]{sigfridsson}