我可以同时使用参考书目和 bibTeX 吗?

我可以同时使用参考书目和 bibTeX 吗?

我想使用手写的参考书目部分,并额外使用 BibTeX 的优点。是否可以同时使用这两个系统?

这是我的 .tex 文件的文本:

\documentclass[11pt,twoside,a4paper]{article}

\usepackage[english]{babel}

\begin{document}
In the paper of A \cite{paperA}. \\
In the paper of B \cite{paperB}.


\begin{thebibliography}{3}
\bibitem{paperA}
Blah.
\bibliography{TESTbibfile}

\end{thebibliography}


\end{document}

这是我所看到的屏幕截图: 在此处输入图片描述 我还有一个 bib 文件,它在这里:

@article {paperB
author = {B},
title = {blah2}
}

相关内容