如何在 Latex 中引用/参考一篇论文

如何在 Latex 中引用/参考一篇论文

我正在用 Latex 准备一份稿件。我想在一段中引用/参考一篇论文。

我使用示例格式引用它

“这是我的手稿 \cite{bibtex_key}。”

然后它返回一个输出

“这是我的手稿。[1]”

而我需要的是

“这是我的手稿[1]。”

下面是工作示例,您可以编译并看到参考文献 1 位于句号之后,而这不应该发生,因为我在句号之前引用了它。

\documentclass[fleqn,10pt]{wlscirep}
\title{Title}

\begin{document}

\section*{Introduction}

The introduction goes here \cite{Thomas_book}.

\begin{thebibliography}{unsrt}

\bibitem{Thomas_book}
Thomas, L. \& Ari, R. d. \emph{Biological Feedback} (CRC Press, USA, 1990).

\end{thebibliography}

\end{document}

类文件的链接是:

https://www.dropbox.com/s/u6sl35ul05ryng8/wlscirep.cls?dl=0

答案1

我不知道这个课程,但在宏后wlscirep插入似乎会将标点符号移动到所需的位置。\relax\cite

\documentclass[fleqn,10pt]{wlscirep}
\begin{document}
\section*{Introduction}
  The introduction goes here \cite{Thomas_book}\relax.
\begin{thebibliography}{unsrt}
  \bibitem{Thomas_book}
    Thomas, L. \& Ari, R. d. \emph{Biological Feedback} (CRC Press, USA, 1990).
\end{thebibliography}
\end{document}

引文后的句号

答案2

当我更改文档类时它对我有用,但我不确定这是否是你想要的:

\documentclass[a4paper,10pt]{article}
\title{Title}

\begin{document}

\section*{Introduction}

The introduction goes here \cite{Thomas_book}.

\begin{thebibliography}{unsrt}

\bibitem{Thomas_book}
Thomas, L. \& Ari, R. d. \emph{Biological Feedback} (CRC Press, USA, 1990).

\end{thebibliography}

\end{document}

相关内容