将 bib 文件中的相关部分转换为参考书目条目

将 bib 文件中的相关部分转换为参考书目条目

我有一个包含参考书目的 latex 文件。我使用 Bibliography.bib以下命令输入从文件中获取的参考书目项目

\bibliographystyle{apalike}
\bibliography{Bibliography}

是否可以仅提取文档中使用的条目的 bibtex 条目命令?

举例来说,假设Bibliography.bib文件中有三个条目,并且我只使用文档中的第一个和第三个条目。

@article{first_article,
  title={Title of the first article},
  author={First, Author},
  journal={First journal},
  volume={15},
  number={1},
  pages={23-27},
  year={2020}
}

@article{second_article,
  title={Title of the second article},
  author={Second, Author},
  journal={Second journal},
  volume={2},
  number={445},
  pages={124-130},
  year={2019}
}

@article{third_article,
  title={Title of the third article},
  author={Third, Author},
  journal={Third journal},
  volume={1},
  number={41},
  pages={114-120},
  year={2018}
}

我可以自动获取如下所示的参考书目命令(针对所有使用的条目)吗?

\begin{thebibliography}{99}
\bibitem{first_article} 
First, A. (2020). Title of the first article. \textit{First journal}, 15(1):23-27.
\bibitem{third_article} 
Third, A. (2018). Title of the third article. \textit{Third journal}, 1(451):114-120.
\end{thebibliography}

相关内容