-3

所以我在我的大学写了一篇论文,我对乳胶中的参考系统有一些问题,如果它是一个网络链接、一本书等,我就可以正确地做到这一点。

4

1 回答 1

-1

要在 LaTeX 上引用某些内容,您可以使用 Cite This For Me 中的这个 chrome 扩展,您可以在不同的引用样式之间进行选择。

https://chrome.google.com/webstore/detail/cite-this-for-me-web-cite/nnnmhgkokpalnmbeighfomegjfklkkle

例如,在 LaTeX 文档的最后,您可以这样写:

    \begin{thebibliography}{}
     \bibitem{CITATION1}
       latex?, H.
latex?, H. (2021) How to use Oxford reference system correctly for both weblinks and books in latex?, Stack Overflow. Available at: https://stackoverflow.com/questions/66492285/how-to-use-oxford-reference-system-correctly-for-both-weblinks-and-books-in-late (Accessed: 18 March 2021).
    \end{thebibliography}

然后在文档中,您可以使用 \cite 命令引用您的参考资料。例如:This is the citation \cite{CITATION1} blabla

于 2021-03-18T19:08:03.387 回答