我想為出版物清單建立一個模板,然後可供多人使用。這個想法是有一個包含所有出版物的書目文件。同儕審查的條目標有關鍵字 = pr。然後是 scriptreport 類型的主文件,每個人都可以在其中整合他們的章節文件,以便將每個人的出版物清單合併到一個文件中。章節文件是一切的核心,應該是可重複使用的。它應該從 bib 檔案中過濾出相應作者的條目,並將它們列印在兩個清單中(同行評審的和非同行評審的)。我的問題是,在這種情況下我真的不知道如何按作者過濾。以下是兩個檔案的粗略程式碼:
掌握:
\documentclass[a4paper]{scrreprt}
\usepackage{biblatex}
\title{Publication list}
\addbibresource{sample.bib}
\begin{document}
\maketitle
\tableofcontents
\newpage
\include{Researcher}
\newpage
\end{document}
章節:
\chapter*{Researcher}
\addcontentsline{toc}{chapter}{Researcher}
\nocite{*}
\printbibliography[keyword={pr}, title={Peer-reviewed}]
\nocite{*}
\printbibliography[notkeyword={pr}, title={Non-peer-reviewed}]
答案1
按名稱過濾並不那麼容易。一種方法是使用來源映射和正規表示式來匹配名稱並添加關鍵字(例如biblatex:在參考書目中分離特定作者的出版物)。
使用字串/宏比較的另一種方法顯示在biblatex:動態過濾掉參考文獻中特定作者的出版物。如同使用 biblatex 將特定作者加粗我更喜歡使用哈希而不是字串/宏比較。
以下是我的回答的改編https://tex.stackexchange.com/a/416416/35864對於粗體名稱進行名稱過濾。那裡的大部分程式碼都可以簡單地複製過來,新的東西是定義兩個書目檢查來按任意條件過濾書目條目。
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[backend=biber,style=authoryear]{biblatex}
\addbibresource{biblatex-examples.bib}
\makeatletter
\def\fnblx@bibfile@name{\jobname -fnblx.bib}
\newwrite\fnblx@bibfile
\immediate\openout\fnblx@bibfile=\fnblx@bibfile@name
\immediate\write\fnblx@bibfile{%
@comment{Auto-generated file}\blx@nl}
\newcounter{fnblx@name}
\setcounter{fnblx@name}{0}
\newcommand*{\fnblx@writenametobib}[1]{%
\stepcounter{fnblx@name}%
\edef\fnblx@tmp@nocite{%
\noexpand\AfterPreamble{%
\noexpand\setbox0\noexpand\vbox{%
\noexpand\fnblx@getmethehash{fnblx@name@\the\value{fnblx@name}}}}%
}%
\fnblx@tmp@nocite
\immediate\write\fnblx@bibfile{%
@misc{fnblx@name@\the\value{fnblx@name}, author = {\unexpanded{#1}}, %
options = {dataonly=true},}%
}%
}
\AtEndDocument{%
\closeout\fnblx@bibfile}
\addbibresource{\fnblx@bibfile@name}
\newcommand*{\fnblx@namehashes}{}
\DeclareNameFormat{fnblx@hashextract}{%
\xifinlist{\thefield{hash}}{\fnblx@namehashes}
{}
{\listxadd{\fnblx@namehashes}{\thefield{hash}}}}
\DeclareCiteCommand{\fnblx@getmethehash}
{}
{\printnames[fnblx@hashextract][1-999]{author}}
{}
{}
\newtoggle{fnblx@tempa}
\DeclareIndexNameFormat{fnblx@checkfilternames}{%
\xifinlist{\thefield{hash}}{\fnblx@namehashes}
{\global\toggletrue{fnblx@tempa}}
{}}
\newcommand*{\addbfilternames}{\forcsvlist\fnblx@writenametobib}
\newcommand*{\resetfilternames}{\def\fnblx@namehashes{}}
\defbibcheck{filternames}{%
\global\togglefalse{fnblx@tempa}
\indexnames[fnblx@checkfilternames][1-999]{labelname}%
\iftoggle{fnblx@tempa}
{}
{\skipentry}}
\defbibcheck{notfilternames}{%
\global\togglefalse{fnblx@tempa}
\indexnames[fnblx@checkfilternames][1-999]{labelname}%
\iftoggle{fnblx@tempa}
{\skipentry}
{}}
\makeatother
\begin{document}
\cite{sigfridsson,worman,geer,knuth:ct:a,knuth:ct:b}
\addbfilternames{Emma Sigfridsson}
\printbibliography[check=filternames, title={Works by Emma Sigfridsson}]
\printbibliography[check=notfilternames, title={Works not by Emma Sigfridsson}]
\resetfilternames
\addbfilternames{{Knuth, Donald E.}}
\printbibliography[check=filternames, title={Works by Donald Knuth}]
\printbibliography[check=notfilternames, title={Works not by Donald Knuth}]
\end{document}
透過上面的使用範例,使用者介面應該是不言自明的。如果您對實施有任何未涵蓋的問題https://tex.stackexchange.com/a/416416/35864,請在評論中提前提問。