将参考文献从 MS-Word 转移到 LaTeX 书目

将参考文献从 MS-Word 转移到 LaTeX 书目

我有一些参考文献(不是参考书目格式,而是手动制作的 IEEE 样式),需要从 Word 转移到 LaTeX。我该怎么做?我正在使用 IEEEtrans 类。以下是示例代码

\documentclass[conference]{IEEEtran}
\begin{document}
\bibliographystyle{IEEEtran}

\begin{thebibliography}{2}
\bibitem{IEEEhowto:hans1}
N.~Name, "The M.Sc. Thesis Titles in quotation", M.Sc. Thesis, Y University, ISBN, City, Country, Year.
\bibitem{IEEEhowto:hans2}
R.~Name, "The PhD Thesis Titles in quotation", PhD Thesis, Y University, ISBN, City, Country, Year.

\end{thebibliography}
\end{document}

答案1

通过以下 mwe,您可以看到如何使用包csquotes和命令\enquote来使用标准引号或\foreignquote{english}{text}用引号text引用english

梅威瑟:

\documentclass[conference]{IEEEtran}

\usepackage[english,ngerman]{babel}
\usepackage[autostyle,german=guillemets]{csquotes}


\begin{document}
\bibliographystyle{IEEEtran}

\begin{thebibliography}{2}
\bibitem{IEEEhowto:hans1}
N.~Name, \enquote{The M.Sc. Thesis Titles in quotation}, M.Sc. Thesis, Y University, ISBN, City, Country, Year.
\bibitem{IEEEhowto:hans2}
R.~Name, \foreignquote{english}{The PhD Thesis Titles in quotation}, PhD Thesis, Y University, ISBN, City, Country, Year.

\end{thebibliography}
\end{document}

答案2

有多种方法可以实现此目的。作为入门套件:

  • 正如您的 MWE 所表明的,您的参考文献已经以某种方式格式化。请尝试“text2bib”,无论是本地(来自CTAN)或来自开发者的专用网站
  • 如果您有大量参考文献和原始出版物(如期刊出版物)作为 pdf 文件,请将它们上传/粘贴到文献参考管理软件中,该软件能够 i) 获取书目数据和 ii) 以 BibTeX 或 BibLaTeX 方言导出 *.bib 文件。
    对于已保存在计算机上的出版物,本地安装贾布雷夫或基于浏览器的解决方案门德利我想到的是这里。基于道伊佐特罗可以获取已保存的论文的书目数据,并在访问新出版物的同时协助建立文献数据库。

相关内容