Biblatex-chicago 中 \footcite 和 \cite 的問題同上

Biblatex-chicago 中 \footcite 和 \cite 的問題同上

我在印製「同上」一詞以及隨後對同一作品的引用時,對\footcite和命令的行為方式遇到了一些問題。\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命令放入命令中, “同上”的格式會有所不同\footnote

在這裡做了一些閱讀後,我發現放置\cite命令 incite\footnote不被認為是使用這些命令的正確方法。然而,有時我確實需要用幾個參考文獻和更長的解釋文本做腳註,而且我看不出將所有這些都放在命令的第二個中是如何工作[...]\footcite

答案1

如果以引文開頭,請使用\Cite大寫“C” 。\footnote

biblatex確保\footcites 的內容正確大寫,就像腳註形成一個完整的句子一樣(以大寫字母開頭,以句點結尾)。如果您手動將引文放入\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}

1. 參見 Sigfridsson 和 Ryde 1998.//2。同上。同上。


我認為只要腳註包含(相當多)不僅僅是該引文,就可以在 a 中包含 a\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}

相關內容