我有此 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}