我有以下文件.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
)加载了引文管理包natbib
。natbib
加载后,指令\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}