![如何在 Latex 中引用/参考一篇论文](https://linux22.com/image/323575/%E5%A6%82%E4%BD%95%E5%9C%A8%20Latex%20%E4%B8%AD%E5%BC%95%E7%94%A8%2F%E5%8F%82%E8%80%83%E4%B8%80%E7%AF%87%E8%AE%BA%E6%96%87.png)
我正在用 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}
类文件的链接是:
答案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}