biblatex citestyle“物理”

biblatex citestyle“物理”

我是 biblatex 环境的新手,我迫切希望在我的文档中有清晰的引用。我想要的是类似这样的内容:

我想引用这个1

参考

1作者等....

我设法通过应用这个序言以及更准确的“物理”样式在“参考”部分中获得正确的形式:

\documentclass[a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[backend=bibtex,style=phys]{biblatex}
\addbibresource{bib.bib}

\cite但不幸的是,当我在文本中设置时,我得到了以下形式:

我想引用这个[1]

而不是像上面那样需要的“脚注”格式

谢谢您的帮助,抱歉我的问题格式不正确。

答案1

使用\supercite{mykeyword}\autocite{mykeyword}(感谢,Joseph Wright!)代替\cite{mykeyword}

例子:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}

\usepackage{garamondx}
\usepackage[english]{babel}
\usepackage[backend=bibtex,style=phys]{biblatex}
\addbibresource{bib.bib}
\usepackage{filecontents}

\begin{filecontents}{bib.bib}
@BOOK{Lear71,
  author = {Lear, Edward},
  title = {Nonsense songs, stories, botany, and alphabets},
  year = {1871},
  publisher = {James R. Osgood and Company},
  location = {Boston}}

@BOOK{Lear80,
  author = {Lear, Edward},
  title = {Lear’s Book of Nonsense},
  year = {1880},
  publisher = {Frederick Warne and Co},
  location = {London}}
\end{filecontents}

\title{Literature Review: \\
\textbf{Nonsense Literature}}


\author{The Scroobious Bird}
\date{\today}

\begin{document}

\maketitle

\section*{\textit{Introduction}}
Some Text \supercite{Lear80}. Some more text \supercite{Lear71}. 

\printbibliography

\end{document} 

在此处输入图片描述

相关内容