natbib citep의 성만

natbib citep의 성만

내 인용을 (성 이니셜, 연도) 대신 (성, 연도)로 표시하고 싶습니다. 저는 'authoryear'를 설정하여 natbib 패키지를 사용하고 있습니다.

다음은 최소한의 예입니다.

내 .tex 파일:

\documentclass[]{article}
\usepackage[authoryear]{natbib}

\begin{document}

Document body text with citations \\
\citep{Bertram91} \\
\citep{Bertram06} \\ 

\bibliographystyle{authordate1}
\bibliography{myreferences}

\end{document}

그리고 내 .bib 파일은 다음과 같습니다.

@article{Bertram91,
        author = "Bertram C.D., Raymond C.J.",
        title = "Measurements of wave speed...",
        journal = "Med. and Biol. Eng. and Comput.",
        volume = "29",
        year = "1991",
        pages = "493--500",
}

@article{Bertram06,
        author = "Bertram C.D., Tscherry J.",
        title = "The onset of flow-rate...",
        journal = "Journal of Fluids and Structures",
        volume = "22",
        year = "2006",
        pages = "1029--1045",
}

결과는 다음과 같습니다.

여기에 이미지 설명을 입력하세요

인용문에 이니셜을 넣고 싶지 않습니다.

답변1

귀하의 입력(그리고 BibTeX 규칙)에 따르면, 이 논문은 Bertram91방금하나저자는 성이 "Bertram CD"이고 이름이 "Raymond CJ"입니다.

저자는 다음과 같은 형식으로 제공되어야 합니다.

Family, Given

(또한 Given Family사용할 수 있지만 구성표를 고수하는 것이 더 낫습니다. Given물론 이니셜일 수도 있습니다).

저자~ 해야 하다로 구분합니다 and. 따라서 귀하의 논문에 대한 올바른 구문은 다음과 같습니다.

@article{Bertram91,
    author = "Bertram, C.D. and Raymond, C.J.",
    [...]

관련 정보