使用 biblatex 更改引用位置

使用 biblatex 更改引用位置

有些期刊要求在括号/方括号内使用行内引用,而有些期刊则要求使用上标引用。在句子末尾,行内引用通常排版在句号之前,而上标引用则排版在句号之后。引用与 bibtex 一起使用的包会自动将引用移动到正确的位置。

以下是带有内联引用的 MWE:

\documentclass{article}
\usepackage{filecontents}
\usepackage{cite}

\begin{filecontents}{biblio.bib}
@article{fragoso2016,
  title = {Epidemiology of {{Chronic Obstructive Pulmonary Disease}} ({{COPD}}) in {{Aging Populations}}},
  volume = {13},
  issn = {1541-2563},
  doi = {10.3109/15412555.2015.1077506},
  language = {eng},
  timestamp = {2017-02-09T11:28:32Z},
  number = {2},
  journal = {COPD},
  author = {Fragoso, Carlos A. Vaz},
  year = {2016},
  keywords = {Aging,COPD,Epidemiology,GOLD,Spirometry},
  pages = {125--129}
}
\end{filecontents}

\begin{document}
A statement \cite{fragoso2016}.

\bibliographystyle{unsrt}
\bibliography{biblio}
\end{document}

添加“超级”选项引用,我得到的是“A statement. 1 ”,而不是“A statement [1].”。

使用 biblatex,可以轻松地从内联引用移至上标引用(只需将 \cite 全局更改为 \supercite),但我找不到自动将上标引用移至句号后的方法。有办法吗?

答案1

对我来说很好用:

\documentclass{article} 
\usepackage[autocite=superscript]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
A statement \autocite{doody}.

\end{document}

在此处输入图片描述

\usepackage[autocite=plain]{biblatex}

在此处输入图片描述

相关内容