Título antes do nome do autor?

Título antes do nome do autor?

Quero ter o título antes do nome do autor na minha lista de referências. Como eu poderia conseguir isso. Estou usando a seguinte configuração para o biblatex:

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

desde já obrigado, sushil

Responder1

Você mesmo pode declarar o driver para os diferentes tipos, obter os originais standard.bbxe trocar as bibmacros copiando/colando. Para acompanhar, você deve colocar tudo isso em um novo bbxarquivo e dar a ele um nome exclusivo. Feito isso, seu preâmbulo ficará menos confuso.

O que eu simplesmente não entendo, por que você escolheu authoryear-compapenas o bibstyle? O que é importante por trás authoryear-compacontece nas citações no texto.

sushilBiblatexSwapAuthorTitle

\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}

informação relacionada