使用 revtex4 模板打印两个参考书目

使用 revtex4 模板打印两个参考书目

我正在使用 revtex4 撰写一篇论文,提交给 arxiv。它是为《物理评论快报》杂志撰写的。我想在正文末尾添加一个参考书目部分,在补充信息部分末尾添加另一个参考书目。打印两次参考书目?没有帮助。

我的 MWE 给出错误,说 biblatex 和 natbib(我假设 revtex4 使用的是 natbib)之间存在软件包不兼容。任何建议都很好。

\pdfoutput=1
\documentclass[prl,twocolumn,floatfix,showpacs,superscriptaddress]{revtex4}
\usepackage{blindtext,lipsum}
%\usepackage{multibib}
%\usepackage{natbib}
\usepackage[backend=biber]{biblatex}
\addbibresource{mybib.bib}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amssymb}

\begin{document}

\title{my paper title}

\author{author 1}
\address{university 1}

\author{author 2}%
\address{university 2}

\date{\today}

\begin{abstract}
abstract of my paper
\end{abstract}

%\pacs{}

\maketitle

%% start main
\paragraph*{Introduction} -- This is my paper \cite{paper2007} \cite{paper2012}.

\lipsum[1-1]
\lipsum[2-4]

\paragraph*{References}

\printbibliography


\clearpage
\textbf{\large Supplementary Material}

%%%%%%%%%% Prefix a "S" to all equations, figures, tables and reset the counter %%%%%%%%%%
\setcounter{equation}{0}
\setcounter{figure}{0}
\setcounter{table}{0}
\setcounter{page}{1}
\renewcommand{\theequation}{S\arabic{equation}}
\renewcommand{\thefigure}{S\arabic{figure}}
\renewcommand{\bibnumfmt}[1]{[S#1]}
\renewcommand{\citenumfont}[1]{S#1}

This Supplementary Material presents technical details \cite{paper2007} \cite{paper2010}...

\blindtext

\paragraph*{References}

\printbibliography

\end{document}

相关内容