使用 APA 样式防止 @misc 引用生成编号

使用 APA 样式防止 @misc 引用生成编号

使用 APA 格式时,参考书目不应编号

仅包含@article 引用的 bib

上述参考书目仅使用 @article 引用,但当我添加 @misc 引用来引用网站时,它会添加编号。@misc 引用的编号是我添加到引用的键,如果我不添加键,它会使用引用名称的前三个字母。

带有@MISC 参考的 bib

这是我用来制作杂项参考的代码:

@misc{cnsys,
  title = {Ansys Fluent | {Fluid Simulation Software}},
  howpublished = {\url{https://www.ansys.com/products/fluids/ansys-fluent}},
  note = {Accessed: 2023-03-20},
  key={Ansys Fluent}
}

我现在的问题是如何使用@misc而不改变我的参考样式,或者如何在不使用@misc的情况下引用网站?

以下是一些要运行的代码:

\bibliographystyle{apalike}
\usepackage{natbib}
\PassOptionsToPackage{hyphens}{url}

@article{Boureima2019,
author = {Boureima, Dianda and Ky, Thierry and Ouedraogo, Issaka and KI, Mibiempan and Compaore, Abdoulaye and Compaore, Roger and Bathiebo, Dieudonné},
year = {2019},
month = {04},
pages = {1869-1874},
title = {Experimental Investigation of a Solar Parabolic Trough Cooker},
volume = {11},
journal = {International Journal of Current Research},
url = {https://www.researchgate.net/publication/332182419_Experimental_Investigation_of_a_Solar_Parabolic_Trough_Cooker},
doi = {10.24941/ijcr.34764.03.2019}
}

@article{Steinmann2017,
author = {Steinmann, Wolf Dieter},
doi = {10.1016/J.RSER.2016.10.065},
file = {:C\:/Users/matth/OneDrive - KU Leuven/unif/thesis/Literatuur_solarcooker/pdf/Thermo-mechanical concepts for bulk energy storage.pdf:pdf},
issn = {1364-0321},
journal = {Renewable and Sustainable Energy Reviews},
keywords = {Bulk energy storage,CAES,Compressed heat energy storage,Pumped thermal energy storage,Thermal energy storage,Thermo-mechanical energy storage},
month = {aug},
pages = {205--219},
publisher = {Pergamon},
title = {{Thermo-mechanical concepts for bulk energy storage}},
volume = {75},
year = {2017}
}

@misc{cnsys,
  title = {Ansys Fluent | {Fluid Simulation Software}},
  howpublished = {\url{https://www.ansys.com/products/fluids/ansys-fluent}},
  note = {Accessed: 2023-03-20},
  key={Ansys Fluent}
}

相关内容