将“硬编码”书目从 Word 移植到 Latex 或直接在 Latex 中对其进行“硬编码”

将“硬编码”书目从 Word 移植到 Latex 或直接在 Latex 中对其进行“硬编码”

我在处理大型 Word 文档和相应的参考书目时遇到了一点问题。参考书目是“硬编码”的(不是我的错……),我想将文档移植到 Latex。再次下载整个参考资料对我来说似乎有点太耗时了,所以如果没有简单的方法将 Word 文件中的条目“提取”到 Bib 文件中,我只需在 Latex 中对其进行“硬编码”。假设我应该采用这种方式,我想知道如何使参考书目看起来像往常一样。有什么有效的解决方案建议吗?

提前致谢!

答案1

如果这只是一次性练习,您可以按照自己希望的方式输入和格式化参考文献,使其出现在书目项目的注释字段中。这意味着从 Word 粘贴到您最喜欢的参考编辑器(或文本编辑器)中,并添加乳胶标记以显示斜体、粗体或任何您想要的字体。

示例书目数据库(称为 example.bib):

@BIBNOTE{note:alien,
  note = {Smith, P \& Benn, J 2012, This is a freeform reference, Panamanian Journal of Toenail Clippings},
}

@BIBNOTE{note:bassnote,
  note = {This is just a note but could be a reference if you like and bits could be \textbf{bold for} example},
}

MWE 使用它

\documentclass [12pt]{article}

\usepackage[citestyle=numeric,
    sorting=none] % List citation in order they appear
    {biblatex}

\bibliography{example}

\begin{document}

Beware the Jabberwock my son\cite{note:bassnote}, the jaws that bite\cite{note:bassnote,note:alien}. 

\printbibliography

\end{document} 

相关内容