저자 이름 앞에 제목이 있나요?

저자 이름 앞에 제목이 있나요?

내 참고문헌 목록에서 저자 이름 앞에 제목을 표시하고 싶습니다. 내가 어떻게 그것을 달성할 수 있었는지. 나는 biblatex에 대해 다음 설정을 사용하고 있습니다.

\usepackage[backend=biber,sorting=ydnt, 
bibstyle=authoryear-comp,labelyear=false,defernumbers=true,maxnames=20,firstinits=true, 
uniquename=init,dashed=false]{biblatex}

미리 감사드립니다, 스실

답변1

다양한 유형에 대한 드라이버를 직접 선언하고, 원본을 가져오고 standard.bbx복사/붙여넣기를 통해 bibmacros를 교체할 수 있습니다. 추적하려면 이 모든 것을 새 bbx파일에 배치하고 고유한 이름을 지정해야 합니다. 이렇게 하면 서문이 덜 복잡해집니다.

내가 이해하지 못하는 것은 왜 authoryear-comp턱받이 스타일만을 선택했습니까? 뒤에 중요한 내용은 authoryear-comp본문 인용에서 발생합니다.

ushilBiblatexSwap저자제목

\documentclass{article}
\usepackage[backend=biber,sorting=ydnt, 
    bibstyle=authoryear-comp,labelyear=false,defernumbers=true,maxnames=20,firstinits=true, 
uniquename=init,dashed=false]{biblatex}
\addbibresource{biblatex-examples.bib}
\DeclareBibliographyDriver{book}{%
  \usebibmacro{bibindex}%
  \usebibmacro{begentry}%
  \usebibmacro{maintitle+title}%swap
  \setunit{\labelnamepunct}\newblock
  \usebibmacro{author/editor+others/translator+others}%swap
  \newunit
  \printlist{language}%
  \newunit\newblock
  \usebibmacro{byauthor}%
  \newunit\newblock
  \usebibmacro{byeditor+others}%
  \newunit\newblock
  \printfield{edition}%
  \newunit
  \iffieldundef{maintitle}
    {\printfield{volume}%
     \printfield{part}}
    {}%
  \newunit
  \printfield{volumes}%
  \newunit\newblock
  \usebibmacro{series+number}%
  \newunit\newblock
  \printfield{note}%
  \newunit\newblock
  \usebibmacro{publisher+location+date}%
  \newunit\newblock
  \usebibmacro{chapter+pages}%
  \newunit
  \printfield{pagetotal}%
  \newunit\newblock
  \iftoggle{bbx:isbn}
    {\printfield{isbn}}
    {}%
  \newunit\newblock
  \usebibmacro{doi+eprint+url}%
  \newunit\newblock
  \usebibmacro{addendum+pubstate}%
  \setunit{\bibpagerefpunct}\newblock
  \usebibmacro{pageref}%
  \newunit\newblock
  \iftoggle{bbx:related}
    {\usebibmacro{related:init}%
     \usebibmacro{related}}
    {}%
  \usebibmacro{finentry}}

\begin{document}
\cite{westfahl:space}

\cite{companion}
\printbibliography
\end{document}

관련 정보