我正在创建一个没有论文的大型参考书目;只是一个参考书目。我想使用类似的东西\bibliographystyle{IEEEtran}
。我需要将参考书目分成几部分,但不知道该怎么做。
这是我想要的:
看到数字不断增加,而两个部分之间有一个标题吗?这就是我想要做的。它不必是 IEEEtran,但我希望它看起来能像那样紧凑。
以下是一些可以开始的代码:
\documentclass[12 pt, journal,transmag]{IEEEtran}
\usepackage{cite}
\renewcommand\refname{Student Publications}
\begin{document}
\twocolumn
\cite{fakes1}
\cite{fakes2}
\cite{fakes3}
\cite{fakes4}
\bibliographystyle{IEEEtran}
\bibliography{bibs}
\end{document}
这是 bibs 文件:
@article{fakes1,
title={Fake Title Number One},
author={S. Fake and B. Boss},
year={2021},
journal={AIP Advances},
volume={11},
number={2}
}
@article{fakes2,
title={Fake Title Number Two},
author={R. Fake and B. Boss},
year={2021},
journal={AIP Advances},
volume={11},
number={2}
}
@article{fakes3,
title={Fake Title Number Three},
author={J. Blow and B. Boss},
year={2021},
journal={AIP Advances},
volume={11},
number={2}
}
@article{fakes4,
title={Fake Title Number Four},
author={G. George and B. Boss},
year={2021},
journal={AIP Advances},
volume={11},
number={2}
}
我一直认为它与章节或一些特殊包有关。