答えは特定の種類の参考文献を引用する...私の問題はほぼ完璧に解決されましたが、私は自分の履歴書を連続カウントでソートしたいと思っています。
**Articles**
[5] great Article 2
[4] great Article 1
**Presentations**
[3] great Presentation 2
[2] great Presentation 1
**Thesis**
[1] great Thesis
答え1
リンクから始める答え各カテゴリごとに 1 つのカウンターではなく、単一のカウンターが必要です。基本的に必要なのは だけですbbx@itemtotal
。
\documentclass{article}
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[style=numeric,sorting=ydnt,defernumbers]{biblatex}
\DeclareFieldFormat{labelnumber}{\mkbibdesc{#1}}
\makeatletter
% Print labelnumber as actual number, plus item total, minus one
\newrobustcmd{\mkbibdesc}[1]{%
\number\numexpr\csuse{bbx@itemtotal}+1-#1\relax}
% Increment item total, add entries to categories
\def\bbx@itemtotalcategory#1{%
\iftoggle{blx@skipbib}{\listbreak}{}%
\ifentrytype{#1}
{\csnumgdef{bbx@itemtotal}{\csuse{bbx@itemtotal}+1}%
\addtocategory{#1}{\thefield{entrykey}}%
\listbreak}
{}}
\AtDataInput{\forlistloop{\bbx@itemtotalcategory}{\blx@categories}}
\csnumgdef{bbx@itemtotal}{0}
\makeatother
\DeclareBibliographyCategory{article}
\DeclareBibliographyCategory{report}
\DeclareBibliographyCategory{inproceedings}
\defbibheading{bibliography}{\section*{Publications and Presentations}}
\defbibheading{article}{\subsection*{Journal Articles}}
\defbibheading{report}{\subsection*{Reports}}
\defbibheading{inproceedings}{\subsection*{Presentations}}
\addbibresource{biblatex-examples.bib}
\begin{document}
\nocite{aksin,bertram,chiu,companion,padhye,angenendt,moraux}
\printbibheading
\bibbycategory
\end{document}
ここでも同じ注意事項が適用されます。このアプローチは にのみ適しており、必要なことが示されていない\nocite
場合でも追加の LaTeX 実行が必要になります。biblatex