特定 BST 样式的密钥生成器很差

特定 BST 样式的密钥生成器很差

我有以下文件.tex

\documentclass{article}[10pt]

\usepackage{jucs2e} \usepackage{url}

\begin{document}

\title{Title}
\maketitle

cite~\cite{EnviroTrack}

\bibliographystyle{jucs}  \bibliography{bib}

\end{document}

当我.bbl使用 Bibtex 创建文件时,我得到:

\begin{thebibliography}{1} \newcommand{\enquote}[1]{``#1''} \providecommand{\natexlab}[1]{#1}

\bibitem[{Blum et~al.(2004)Blum, Cao, Chen, Evans, George, George, Gu, He,   Krishnamurthy, Luo, Son, Stankovic, Stoleru and Wood}]{EnviroTrack} Blum, T. A.~B., Cao, Q., Chen, Y., Evans, D., George, J., George, S., Gu, L.,   He, T., Krishnamurthy, S., Luo, L., Son, H., Stankovic, J., Stoleru, R.,   Wood, A.: \enquote{Envirotrack: Towards an environmental computing paradigm   for distributed sensor networks}; Proceedings of the 24th International   Conference on Distributed Computing System; 582--589; 2004.

\end{thebibliography}

生成的 bibitem 键/标识符是错误的,因为此 bibitem 添加了年份名称“Blum、Cao、Chen、Evans、George、George、Gu、He、Krishnamurthy、Luo、Son、Stankovic、Stoleru 和 Wood”。我认为这种行为是由于朱克斯我正在使用的风格。

有人能帮我吗?是否需要附加朱克斯风格?

答案1

我认为对于宏的主要参数和可选参数的目的和结构可能会存在一些混淆\bibitem

  • 主要论点\bibitem花括号内的材料)——这里: ——是“键”,也就是作为(或,等)命令EnviroTrack的参数写的内容。\cite\citet\citet*

  • 可选参数of——\bibitem方括号中的材料——决定了引文标注的样子。看起来你(或包jucs2e)加载了引文管理包natbibnatbib加载后,指令\cite{EnviroTrack}将生成截断的标注Blum et al. (2004)

    相比之下,按照指令\citet*{EnviroTrack}LaTeX 将生成完整的标注(列出所有作者的姓名):

    Blum, Cao, Chen, Evans, George, George, Gu, He, Krishnamurthy, Luo,
    Son, Stankovic, Stoleru and Wood (2004)
    

简而言之,只要natbib加载(您的文档似乎是这种情况),方括号中的材料似乎是正确的。

在此处输入图片描述

\documentclass{article}
\usepackage{natbib} 
\begin{document}
\title{Title}
\citet{EnviroTrack}

\citet*{EnviroTrack}

\begin{thebibliography}{1} 
\newcommand{\enquote}[1]{``#1''} 
\providecommand{\natexlab}[1]{#1}
\bibitem[{Blum et~al.(2004)Blum, Cao, Chen, Evans, George, George, Gu, He, 
Krishnamurthy, Luo, Son, Stankovic, Stoleru and Wood}]{EnviroTrack} Blum, T. A.~B., 
Cao, Q., Chen, Y., Evans, D., George, J., George, S., Gu, L., He, T., Krishnamurthy, 
S., Luo, L., Son, H., Stankovic, J., Stoleru, R., Wood, A.: \enquote{Envirotrack: 
Towards an environmental computing paradigm for distributed sensor networks}; 
Proceedings of the 24th International Conference on Distributed Computing System; 
582--589; 2004.
\end{thebibliography}
\end{document}

相关内容