使用 tufte-book 和 natbib 引用重要记录

使用 tufte-book 和 natbib 引用重要记录

我正在用这tufte-book门课帮助我妈妈写一份家族史。我在想如何引用重要记录(如出生证明、结婚证、缩微胶卷等)时遇到了问题。大多数记录都没有年份或作者,而且文本太长,导致页边空白处写满了文字。(事实上,我得到了“未处理浮动字符太多”的错误。)

以下是一个例子:

托马斯·布雷迪 (Thomas Brady) 的洗礼记录,1860 年 3 月 29 日,卡文郡德拉姆曼教区基拉金 (Killakeen);微缩胶片 #1279229 德拉姆曼南区和巴利马丘教区登记册,1837 - 1935 年;纽约州劳登维尔家谱图书馆。

我希望能够在侧边栏中引用一些内容(例如:托马斯·布雷迪的洗礼记录),然后在书末的参考书目中显示全文。我还想隐藏没有年份的内容的年份。

编辑 以下是我为基本解决问题所采取的措施:

改用 bibtex,并authortitle选择样式。

\documentclass[nobib,twoside,symmetric,openright]{tufte-book}
%Resolve bibhang error problem
\usepackage{natbib}
\let\bibhang\relax
\let\citename\relax
\let\bibfont\relax
\let\Citeauthor\relax
\expandafter\let\csname [email protected]\endcsname\relax

%authortitle shows only the author and shorttitle or shorthand
\usepackage[
  style=authortitle,
  autocite=footnote,
  backend=biber
]{biblatex}
\addbibresource{biblio.bib}

例如,这是biblio.bib条目:

@manual{baptismthomasbrady2,
shorthand = {Baptismal Record for Thomas Brady, 29 March 1860},
note = {Baptismal Record for Thomas Brady, 29 March 1860, Killakeen, Drumlumman Parish, County Cavan; Microfilm \#1279229 Parochial Registers of Drumlumman South and Ballymachugh, 1837 - 1935; Family History Library, Loudonville, NY.},
}

所以现在我的文本看起来像(仅显示shorthand): 在文中自动引用

并且参考书目如下所示(仅显示note): 参考书目

相关内容