BibTex 杂项参考文献仅显示前三个字母

BibTex 杂项参考文献仅显示前三个字母

我在工作中使用 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}  
} 

输出如下图所示: 在此处输入图片描述

相关内容