如何在乳胶中引用引文并使数字显示为上标

如何在乳胶中引用引文并使数字显示为上标

引用

我正在尝试在 Latex 中重现这种风格的引文。据我所知,这是一个引文。

我尝试在 {quote} 和 {quotations} 环境中使用常规 \cite{} 命令,但它们会产生常规1

有人以前见过这种风格并且知道我该如何对其进行编码吗?

我正在 TexWorks 中创建一个 .bib 文件,然后使用 \bibliography{} 命令在正文中调用 .bib 和 \cite{}。

答案1

cite套餐quoting可以帮助您:

\documentclass{article}

\usepackage{quoting, lipsum}

\begin{filecontents}{\jobname.bib}
@book{Defoe1719,
    author  = "Daniel Defoe",
    title   = "Robinson Crusoe",
    year    = "1719"
}
\end{filecontents}

\usepackage[superscript,biblabel]{cite}

\begin{document}
\bibliographystyle{plain}
\lipsum[1]

\begin{quoting}[font=itshape, begintext={``}, endtext={''\cite{Defoe1719}}]
I was born in the year 1632, in the city of York, of a good family, though not of that country, my father being a foreigner of Bremen, who settled first at Hull.
\end{quoting}

\lipsum[3]
\bibliography{\jobname} 
\end{document}

在此处输入图片描述

相关内容