Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

biblatexbiblatex 命令行

Agent Skill

biblatex 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

563

周安装

23

GitHub Stars

4

下载量

180
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:biblatex(biblatex 命令行)
来源仓库:https://github.com/igbuend/grimbard
仓库路径:skills/biblatex
安装命令:
npx skills add https://github.com/igbuend/grimbard --skill biblatex
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/igbuend/grimbard --skill biblatex

简介

biblatex 管理现代 LaTeX 文献引用与排版,支持 biber 后端与多语言参考文献格式。

  • 适用于学术论文撰写与出版级文档排版需求。
  • 配置后可通过 pdflatex + biber 流程自动生成规范参考文献列表。
  • 需安装 TeX Live 发行版与 biber 工具链,依赖本地编译环境。
  • biblatex 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

biblatex + biber — Modern Bibliography Management

CTAN: https://ctan.org/pkg/biblatex Manual: texdoc biblatex

Setup

\usepackage[
  backend=biber,        % modern backend (not bibtex)
  style=authoryear,     % citation + bibliography style
  sorting=nyt,          % name-year-title
  maxbibnames=99,       % show all authors in bibliography
  maxcitenames=2,       % truncate in citations
]{biblatex}

\addbibresource{references.bib}   % .bib file (include extension!)

% At end of document:
\printbibliography

Compilation Workflow

pdflatex  main.tex    # 1. Generate .bcf file
biber     main        # 2. Process bibliography (no extension!)
pdflatex  main.tex    # 3. Resolve references
pdflatex  main.tex    # 4. Final pass (page numbers, back-refs)

Or with latexmk: latexmk -pdf main.tex (handles everything automatically).

.bib File Format

@article{einstein1905,
  author    = {Einstein, Albert},
  title     = {On the Electrodynamics of Moving Bodies},
  journal   = {Annalen der Physik},
  year      = {1905},
  volume    = {322},
  number    = {10},
  pages     = {891--921},
  doi       = {10.1002/andp.19053221004},
}

@book{knuth1984,
  author    = {Knuth, Donald E.},
  title     = {The {\TeX}book},
  publisher = {Addison-Wesley},
  year      = {1984},
  isbn      = {0-201-13447-0},
}

@inproceedings{smith2023,
  author    = {Smith, John and Doe, Jane},
  title     = {Deep Learning for Everything},
  booktitle = {Proceedings of ICML},
  year      = {2023},
  pages     = {100--110},
  doi       = {10.1234/icml.2023.100},
}

@online{wiki2024,
  author    = {{Wikipedia contributors}},
  title     = {LaTeX},
  url       = {https://en.wikipedia.org/wiki/LaTeX},
  urldate   = {2024-01-15},
  year      = {2024},
}

@thesis{jones2020,
  author    = {Jones, Alice},
  title     = {Quantum Computing Applications},
  type      = {phdthesis},
  institution = {MIT},
  year      = {2020},
}

@manual{pgfmanual,
  author    = {Tantau, Till},
  title     = {The TikZ and PGF Packages},
  year      = {2023},
  url       = {https://ctan.org/pkg/pgf},
}

Common Entry Types

TypeUse for
@articleJournal articles
@bookBooks
@inproceedingsConference papers
@incollectionChapter in edited book
@thesisPhD/Master's thesis (use type field)
@onlineWebsites, web resources
@manualTechnical documentation
@techreportTechnical reports
@miscAnything else
@unpublishedUnpublished manuscripts
@patentPatents
@softwareSoftware packages

Common Fields

FieldDescription
authorAuthor(s) — {Last, First and Last, First}
titleTitle — protect caps with {NASA}
year/datePublication year or full date (2023-06-15)
journalJournal name
booktitleConference/collection title
publisherPublisher
volume/numberVolume and issue
pagesPage range (10--20)
doiDigital Object Identifier
urlWeb URL
urldateAccess date for online sources
isbn/issnIdentifiers
editorEditor(s)
editionEdition ({2nd})
noteAdditional notes
abstractAbstract (not printed by default)
keywordsKeywords for filtering
langidLanguage (english, german) — for hyphenation

Author Name Formats

author = {Last, First},                    % single
author = {Last, First and Last, First},    % multiple
author = {Last, Jr., First},               % suffix
author = {{World Health Organization}},    % corporate (double braces)
author = {da Silva, João},                 % name particles

Citation Commands

CommandOutput (authoryear)Output (numeric)
\cite{key}Einstein 1905[1]
\parencite{key}(Einstein 1905)[1]
\textcite{key}Einstein (1905)Einstein [1]
\autocite{key}Style-dependentStyle-dependent
\fullcite{key}Full bibliography entry inline
\footcite{key}Footnote citation
\citeauthor{key}EinsteinEinstein
\citeyear{key}19051905
\citetitle{key}On the Electro...

With Options

\parencite[see][p.~42]{einstein1905}
% Output: (see Einstein 1905, p. 42)

\parencite[p.~42]{einstein1905}
% Output: (Einstein 1905, p. 42)

% Multiple citations
\parencite{einstein1905, knuth1984}
% Output: (Einstein 1905; Knuth 1984)

Bibliography Styles

StyleCitationBibliographyUse for
authoryearEinstein (1905)Alphabetical by authorHumanities, social sciences
numeric[1]Numbered by citation orderSciences, engineering
alphabetic[Ein05]Alphabetical labelsMath, CS
authortitleEinstein, "On the..."Author-titleHumanities
verboseFull cite in footnotesDetailedLaw, history
ieee[1]IEEE formatEngineering (needs biblatex-ieee)
apa(Einstein, 1905)APA 7th edPsychology (needs biblatex-apa)
chicago-authordate(Einstein 1905)ChicagoHumanities (needs biblatex-chicago)
nature¹Nature formatNatural sciences (biblatex-nature)
% For IEEE:
\usepackage[style=ieee, backend=biber]{biblatex}

% For APA:
\usepackage[style=apa, backend=biber]{biblatex}
% Also needs: \DeclareLanguageMapping{english}{english-apa}

Sorting Options

ValueSorting order
ntyName, title, year (default for authoryear)
nytName, year, title
noneCitation order (for numeric)
yntYear, name, title
anytAlphabetic label, name, year, title

Printing the Bibliography

% Simple
\printbibliography

% With title
\printbibliography[title={References}]

% As section (not chapter)
\printbibliography[heading=subbibliography]

% Filtered
\printbibliography[type=article, title={Journal Articles}]
\printbibliography[keyword=primary, title={Primary Sources}]
\printbibliography[notkeyword=primary, title={Secondary Sources}]

Multiple Bibliographies

% By type
\printbibliography[type=book, heading=subbibliography, title={Books}]
\printbibliography[type=article, heading=subbibliography, title={Articles}]

% By keyword
% In .bib: keywords = {primary}
\printbibliography[keyword=primary, title={Primary Sources}]
\printbibliography[notkeyword=primary, title={Other Sources}]

% Per chapter (refsection)
\begin{refsection}
\chapter{First Chapter}
Text \cite{something}.
\printbibliography[heading=subbibliography]
\end{refsection}

Useful Options

\usepackage[
  backend=biber,
  style=authoryear,
  sorting=nyt,
  maxbibnames=99,      % all authors in bibliography
  maxcitenames=2,      % "Smith et al." after 2 authors
  mincitenames=1,      % show at least 1 before "et al."
  uniquelist=false,    % don't disambiguate with more names
  uniquename=false,    % don't disambiguate with initials
  dashed=false,        % repeat author name (vs dash for same author)
  doi=true,            % print DOIs
  isbn=false,          % hide ISBNs
  url=false,           % hide URLs (except @online)
  eprint=false,        % hide eprint info
  date=year,           % show only year
]{biblatex}

Comparison: biblatex vs natbib/BibTeX

Featurebiblatex + bibernatbib + BibTeX
Unicode✅ Full support❌ Limited
StylesFlexible (LaTeX macros).bst files (hard to edit)
Entry typesMore (@online, @software)Fewer
Filteringkeyword, type filtersManual
Multiple bibliographiesBuilt-inNeeds multibib/etc
Fine-grained citations\textcite, \parencite, etc\citet, \citep
Date handlingFull dates, rangesYear only
Name handlingSophisticatedBasic
Compilationpdflatex → biber → pdflatex²pdflatex → bibtex → pdflatex²
Journal requirementSome require BibTeX✅ Traditional

Recommendation: Use biblatex for new documents. Use natbib only if a journal template requires it.

Common Pitfalls

ProblemCauseFix
"I found no \citation commands"biber not runRun biber after first pdflatex
"I found no \bibstyle command"Mixing bibtex with biblatexUse biber, not bibtex
Citation shows [key]biber hasn't run / errorCheck biber log, re-run
.bib file not foundMissing extension in \addbibresourceInclude .bib extension
Unicode in.bib failsUsing BibTeX backendUse backend=biber
Author "et al." wrongmaxcitenames too lowAdjust maxcitenames
Style not foundMissing packageInstall biblatex-ieee, biblatex-apa, etc.
Refsection emptyCitations outside refsectionEach refsection is independent
Name sorting wrongParticles (van, de)Use \DeclareNameAlias or check useprefix
"Runaway argument"Missing comma in.bibCheck.bib syntax (commas between fields)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.58%
按下载量换算69

Claude

32.65%
按下载量换算59

Cursor

17.67%
按下载量换算32

Gemini CLI

8.73%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills