![gerar automaticamente lista de citações para autor específico](https://rvso.com/image/328474/gerar%20automaticamente%20lista%20de%20cita%C3%A7%C3%B5es%20para%20autor%20espec%C3%ADfico.png)
Atualmente estou montando um currículo e procurando uma maneira de automatizar o processo. Tenho um banco de dados central bibtex que armazena mais de 500 entradas e quero importar e criar automaticamente uma bibliografia apenas para as entradas que possuem meu nome no author
campo. Ao usar o biber, estou ciente da opção de usar \printbibliography
entradas opcionais para filtrar com base no tipo de entrada:
\printbibliography[type=article]
\printbibliography[type=article]
Existe algum procedimento semelhante que permita pesquisar os author
campos? Ou um processo que equivale a:
\printbibliography[author=John Doe]
Responder1
Obrigado por toda a ajuda. Com base nas respostas recomendadas e em algumas pesquisas extras, montei um MWE que faz exatamente o que preciso.
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[backend=biber,style=numeric,refsection=section,sorting=ydnt,
defernumbers=true,maxnames=99,doi=false,isbn=false,url=false{biblatex}
\addbibresource{biblatex-examples.bib}
%----------------Sourcemap to create keyword based on author-------------------%
%Search and replace "Knuth" and "NOTKnuth" with the desired author name
\DeclareSourcemap{
\maps[datatype=bibtex,overwrite=true]{
\map{
\step[fieldsource=author,
match=Knuth,
final]
\step[fieldset=keywords, fieldvalue=Knuth]
}
\map{
\step[fieldsource=author,
notmatch=Knuth,
final]
\step[fieldset=keywords, fieldvalue=NOTKnuth]
}
}
}
%------------------Create bib sections for numbering --------------------------%
\defbibnote{books}{}
\defbibnote{other}{}
\defbibnote{DifAuthors}{}
\defbibenvironment{bibliography}
{\list
{\printtext[labelnumberwidth]{% label format from numeric.bbx
\printfield{prefixnumber}%
\printfield{labelnumber}}}
\sloppy\clubpenalty4000\widowpenalty4000}
{\endlist}
{\item}
%---------------------------Begin Document-------------------------------------%
\begin{document}
\nocite{*}
\printbibliography[title={Knuth Books},prenote=books,type=book,keyword=Knuth,resetnumbers=true]
\printbibliography[title=Other,prenote=other,nottype=book,nottype=article,nottype=patent,keyword=Knuth,resetnumbers=true]
%Other authors: Just to make sure it is properly sorting the files
\printbibliography[title={DifferentAuthors},prenote=DifAuthors,type=article,keyword=NOTKnuth,resetnumbers=true]
\end{document}
Ele funciona muito bem para diferentes tipos de arquivos e lida com mais de 500 bibliotecas de referência, então, obrigado novamente pelas dicas!