![将参考文献从 MS-Word 转移到 LaTeX 书目](https://linux22.com/image/319958/%E5%B0%86%E5%8F%82%E8%80%83%E6%96%87%E7%8C%AE%E4%BB%8E%20MS-Word%20%E8%BD%AC%E7%A7%BB%E5%88%B0%20LaTeX%20%E4%B9%A6%E7%9B%AE.png)
我有一些参考文献(不是参考书目格式,而是手动制作的 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}