我在 .bib 文件中作了以下引用:
\bibliographystyle{apa}
@article{nii1986blackboard,
title={The blackboard model of problem solving and the evolution of blackboard architectures},
author={Nii, H Penny},
journal={AI magazine},
volume={7},
number={2},
pages={38--38},
year={1986}
}
@inproceedings{gallofr2021news,
title={The news angler project: Exploring the next generation of journalistic knowledge platforms},
author={Gallofr, Marc and Opdahl, Andreas L and Stoppel, Sergej and Tessem, Bj{\o}rnar and Veres, Csaba and others},
booktitle={Norsk IKT-konferanse for forskning og utdanning},
number={2},
year={2021}
}
@article{opdahl2021ontologies,
title={Ontologies for finding journalistic angles},
author={Opdahl, Andreas L and Tessem, Bj{\o}rnar},
journal={Software and Systems Modeling},
volume={20},
pages={71--87},
year={2021},
publisher={Springer}
}
@article{motta2020analysis,
title={Analysis and design of computational news angles},
author={Motta, Enrico and Daga, Enrico and Opdahl, Andreas L and Tessem, Bj{\o}rnar},
journal={IEEE Access},
volume={8},
pages={120613--120626},
year={2020},
publisher={IEEE}
}
@article{berven2020knowledge,
title={A knowledge-graph platform for newsrooms},
author={Berven, Arne and Christensen, Ole A and Moldeklev, Sindre and Opdahl, Andreas L and Villanger, Kjetil J},
journal={Computers in Industry},
volume={123},
pages={103321},
year={2020},
publisher={Elsevier}
}
@article{grishman2019twenty,
title={Twenty-five years of information extraction},
author={Grishman, Ralph},
journal={Natural Language Engineering},
volume={25},
number={6},
pages={677--692},
year={2019},
publisher={Cambridge University Press}
}
@article{hevner2008design,
title={Design science in information systems research},
author={Hevner, Alan R and March, Salvatore T and Park, Jinsoo and Ram, Sudha},
journal={Management Information Systems Quarterly},
volume={28},
number={1},
pages={6},
year={2004}
}
@inproceedings{song2015light,
title={From light to rich ere: annotation of entities, relations, and events},
author={Song, Zhiyi and Bies, Ann and Strassel, Stephanie and Riese, Tom and Mott, Justin and Ellis, Joe and Wright, Jonathan and Kulick, Seth and Ryant, Neville and Ma, Xiaoyi},
booktitle={Proceedings of the the 3rd Workshop on EVENTS: Definition, Detection, Coreference, and Representation},
pages={89--98},
year={2015}
}
@inproceedings{ratinov2009design,
title={Design challenges and misconceptions in named entity recognition},
author={Ratinov, Lev and Roth, Dan},
booktitle={Proceedings of the thirteenth conference on computational natural language learning (CoNLL-2009)},
pages={147--155},
year={2009}
}
在我的 .tex 文件中我已按如下方式添加它们:
\cite{nii1986blackboard}
\cite{gallofr2021news}
\cite{opdahl2021ontologies}
\cite{motta2020analysis}
\cite{berven2020knowledge}
\cite{grishman2019twenty}
\cite{hevner2008design}
\cite{song2015light}
\cite{ratinov2009design}
为什么它没有将第一项与其余项一起显示?
答案1
apa.bst
TeX Live 中没有,我认为你应该使用apalike
。并且你应该\bibliographystyle{apa}
从.bib
文件中删除。
\documentclass{article}
\pagestyle{empty}
\begin{document}
\cite{nii1986blackboard}
\cite{gallofr2021news}
\cite{opdahl2021ontologies}
\cite{motta2020analysis}
\cite{berven2020knowledge}
\cite{grishman2019twenty}
\cite{hevner2008design}
\cite{song2015light}
\cite{ratinov2009design}
\bibliographystyle{apalike}
\bibliography{reference}
\end{document}