특정 bst 스타일의 잘못된 키 생성기

특정 bst 스타일의 잘못된 키 생성기

다음 파일이 있습니다 .tex.

\documentclass{article}[10pt]

\usepackage{jucs2e} \usepackage{url}

\begin{document}

\title{Title}
\maketitle

cite~\cite{EnviroTrack}

\bibliographystyle{jucs}  \bibliography{bib}

\end{document}

.bblBibtex로 파일을 생성하면 다음과 같은 결과 가 나타납니다.

\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

매크로의 Main 인수와 Optional 인수의 목적과 구조에 대해 약간의 혼동이 있을 수 있다고 생각합니다 \bibitem.

  • 그만큼주요 주장of \bibitem(중괄호 안의 자료) -- 여기: -- "키", 즉 (또는 , 등) 명령 EnviroTrack의 인수로 작성하는 것입니다 .\cite\citet\citet*

  • 그만큼선택적 인수-- 대괄호 안의 내용 에 따라 \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}

관련 정보