我有一些参考文献(不是参考书目格式,而是手动制作的 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}