bibtex 中有自由格式的条目吗?

bibtex 中有自由格式的条目吗?

bibitem我正在编辑一个包含 100 多个参考书目的 LaTeX 文档。不幸的是,参考书目在环境中以 s编码thebibliography

我想知道是否有一条“平稳”的升级路径,例如自由文本条目。我在谷歌上搜索了一下,但没有找到有用的东西。

这将使已经受益于诸如自动对条目进行排序等功能。当然,依赖数据库的功能(例如更改条目格式)目前无法使用。但这种自由风格的条目在当前阶段已经大有帮助。

发帖后补充:我的最终目标是拥有一个使用标准数据库条目的 BibTex 数据库。但对于过渡,我想知道我是否可以避免在开始时生成完整的 BibTeX 数据库。我绝对计划这样做,但仅限于将来。

答案1

像下面这样?我想你不反对使用 biblatex 吧?filecontents 部分只是动态生成参考书目数据库。实际上,你会把它放在一个单独的文件中。

\documentclass [12pt]{article}

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


\usepackage{filecontents}
\begin{filecontents*}{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},
}
\end{filecontents*}

\bibliography{example}

\begin{document}

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

\printbibliography

\end{document} 

在此处输入图片描述

相关内容