沿文本设置参考书目 RevteX,同时保留各节的编号

沿文本设置参考书目 RevteX,同时保留各节的编号

我有此 Latex 代码,使用 revtex 4:

\documentclass[twocolumn]{revtex4}
\usepackage[T1]{fontenc}
\usepackage{blindtext}

\begin{document}
\section{Introduction}
\blindtext \cite{REF}

\begin{thebibliography}{99}
\bibitem[Citation]{REF}
Somebody.
\newblock Some title
\newblock \textup{Some Journal}. \textbf{0}\penalty0 (0):\penalty0 0--1 (2021).
\end{thebibliography}

\end{document}

结果是: 在此处输入图片描述

但我希望参考书目不要从新的一组列开始,而是从与文本相同的列开始。

下列的这个答案如果我改为:\documentclass[prl,twocolumn]{revtex4},这个问题就解决了,但是出现了一个新问题,即我丢失了该部分中的数字。 在此处输入图片描述

答案1

这是一种可能性,从 复制相应的代码片段aps4-2.rtx。可能有更好的方法,但我从未真正掌握 RevTeX 对不同期刊风格的管理。

请注意,revtex已有 20 年历史,不应用于任何新用途;当前版本是revtex4-2

\usepackage[T1]{fontenc}
\usepackage{blindtext}

% code taken from aps4-2.rtx
\makeatletter
\def\bibsection{%
   \par
   \begingroup
    \baselineskip26\p@
    \bib@device{\hsize}{72\p@}%
   \endgroup
   \nobreak\@nobreaktrue
   \addvspace{19\p@}%
  }%
\makeatother

\begin{document}
\section{Introduction}
\blindtext \cite{REF}

\begin{thebibliography}{99}
\bibitem[Citation]{REF}
Somebody.
\newblock Some title
\newblock \textup{Some Journal}. \textbf{0}\penalty0 (0):\penalty0 0--1 (2021).
\end{thebibliography}

\end{document}

在此处输入图片描述

相关内容