我如何制作具有计量经济学风格的参考书目?

我如何制作具有计量经济学风格的参考书目?

我是初学者。我正在学习如何制作参考书目,对于我的研究领域,我应该以计量经济学风格或类似的风格引用,但我不知道该怎么做。以下是我到目前为止的做法:

\documentclass{article}
\usepackage[backend=biber,style=apa6]{biblatex} % or \usepackage[authordate,backend=biber]{biblatex-chicago}
\bibliography{bb} 
\begin{document}
Primera i única cita \footcite{primer}
\newpage
\printbibliography
\end{document}

我如何才能以 Economentrica 风格(或类似的,用于经济学/计量经济学领域)阐述参考书目?如果可以,您将如何在我的代码中实现它?

答案1

关于参考书目和引用格式的唯一官方指导计量经济学发现的是短段落和一些例子https://www.econometricsociety.org/publications/econometrica/information-authors/instructions-preparing-articles-publication。很难从中构建出一种完整的风格(并且我也相信,对于一个 TeX.SX 问题来说,构建一种完整的风格要求有点太大了:理想情况下,问题应该是关于普遍感兴趣的具体问题,以便它们也可以被其他风格和应用程序所利用)。

以下内容可以作为进一步定制的基础。我没有仔细研究这些示例,所以我预计会遗漏一些细节。

计量经济学样式是作者年份类型样式。为了便于定制,我从biblatex-ext包中挑选了一种样式,因此基本样式是(如果您喜欢压缩引用,ext-authoryear也可以尝试)。ext-authoryear-comp

如果您查阅biblatexbiblatex-ext文档中的相应命令,其他修改应该是可以合理理解的,或者自定义 biblatex 样式的指南。(但我也很乐意回答有关 MWE 中使用的具体代码的问题。)

\documentclass[american]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{csquotes}

\usepackage[backend=biber, style=ext-authoryear,
  giveninits,
]{biblatex}

\DeclareAutoCiteCommand{textcite}{\textcite}{\textcites}
\ExecuteBibliographyOptions{autocite=textcite}

\renewcommand*{\newunitpunct}{\addcomma\space}
\DeclareDelimFormat[bib]{nametitledelim}{\addcolon\space}

\DeclareFieldFormat*{title}{#1}
\DeclareFieldFormat{journaltitle}{#1}
\DeclareFieldFormat{issuetitle}{#1}
\DeclareFieldFormat{maintitle}{#1}
\DeclareFieldFormat{booktitle}{#1}

\renewcommand*{\jourvoldelim}{\addcomma\space}

\DeclareFieldFormat{pages}{#1}
\DeclareFieldFormat{postnote}{\mknormrange{#1}}
\DeclareFieldFormat{multipostnote}{\mknormrange{#1}}

\addbibresource{biblatex-examples.bib}


\begin{document}
\autocite{sigfridsson}

\autocite{nussbaum,cicero,westfahl:space}

\printbibliography
\end{document}

Sigfridsson, E. 和 U. Ryde (1998): 从静电势和矩推导原子电荷的方法比较,载于:计算化学杂志,19.4,377–395,doi:10.1002/(SICI)1096-987X(199803)19:4<377::AID-JCC1>3.0.CO;2-P。

有关的biblatex:如何匹配金融期刊书目样式?

请注意,您可能无法将其biblatex用于期刊投稿,请参阅Biblatex:向期刊投稿。如果期刊接受 LaTeX,它们通常会提供某种提交指南、模板甚至文档类。如果这是用于期刊提交,请仔细检查(如果无法通过其他方式获得信息,请与编辑确认)它们是否可以接受biblatex

相关内容