我在工作中使用 BibTex @misc 引用网站。
@misc{test,
title = {Test},
howpublished = {\url{https://test.com}},
note = {Last accessed: 2018-08-25},
}
当我在输出中像这样 \cite{test} 引用它时,结果仅为 tes。它仅显示前三个字母,而不是整个文本测试。
在这里,我为此提供了一个最简单的例子。
ABC 文本
\documentclass[12pt, a4paper]{article}
\usepackage{hyperref}
% included other relevant packages.
\begin{document}
Here, this is an minimal example \cite{test}.
\bibliographystyle{apalike}
\bibliography{abc.bib}
\end{document}
ABC 文献
@misc{test,
title = {Test Title},
howpublished = {\url{https://test.com}},
journal={ABC Journal}
}