`multibib` 패키지를 사용할 때 참고문헌에서 첫 번째 저자 이름을 어떻게 단축합니까?

`multibib` 패키지를 사용할 때 참고문헌에서 첫 번째 저자 이름을 어떻게 단축합니까?

및 패키지 bibtex에는 biblatex문헌에서 저자 이름을 축약하는 옵션이 있습니다.

참고문헌을 카테고리별로 분리해야 하는 문서를 작성 중입니다. 이 목적으로 패키지 를 사용하고 multibib있는데 작성자 이름에 대한 약어 옵션을 찾을 수 없습니다.멀티빕 문서.

koleygr에서 편집:

MWE???:

\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{references.bib}
@book{general1,
author    = "Myself,Me",
title     = "Some book",
year = "2000"
}


@book{Lastname1989,
title = {A Book},
author = {Lastname,Name},
year = {1989},
}

@book{Else1990,
title = {A Book},
author = { Else,Someone.},
year = {1990},
}
\end{filecontents}
\usepackage{natbib}
\usepackage{multibib}
\newcites{B}{Extra References}
\begin{document}
Here is a normal citation \cite{general1} and an author citation :\citeauthor{general1}

Here is a citation for our second bibliography:
\citeB{Lastname1989} and another author for this bibliography is %\citeauthorB{Else1990}. %Somenting like this that would add the cited author name and the reference in second bibliography

\renewcommand{\refname}{General References}
\bibliographystyle{plainnat}
\bibliography{references}
    \bibliographystyleB{alpha}
\bibliographyB{references}
\end{document}

답변1

multibib문서에 여러 참고문헌을 포함할 수 있는 프레임워크만 제공합니다. 참고문헌 출력의 스타일을 제어하지 않습니다. 그것은 여전히 .bst​​​​로 선택한 파일 에 달려 있습니다 \bibliographystyle<X>.

그래서 이니셜만 인쇄하는 스타일로 전환하면 이니셜을 얻을 수 있습니다. 한 가지 선택은 표준 abbrv스타일이지만 natbib귀하가 사용하고 싶을 수도 abbrvnat있으며 전체 이름 대신 이니셜을 인쇄하는 더 많은 스타일이 있습니다.

관련 정보