> For the complete documentation index, see [llms.txt](https://ayakaleaf-pro.ayaka.space/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ayakaleaf-pro.ayaka.space/latex/zh-cn/can-kao-wen-xian-he-yin-yong/08-biblatex-citation-styles.md).

# Biblatex 引用样式

## 简介和示例

Biblatex 提供了许多引文样式，但如果未设置引用样式，LaTeX 将使用与 [参考文献样式](/latex/zh-cn/can-kao-wen-xian-he-yin-yong/07-biblatex-bibliography-styles.md)相匹配的样式。这里是一个展示使用该 `biblatex` 参数 `style=alphabetic` 用于将引用样式设置为 `字母式`.

```latex
\documentclass{article}
\usepackage[
backend=biber,
style=alphabetic,
]{biblatex}
\title{A bibLaTeX example}
\addbibresource{sample.bib} %Imports bibliography file

\begin{document}
\section{First section}

被引用的条目：\textit{The \LaTeX\ Companion} 一书 \cite{latexcompanion}，以及 Einstein 的期刊论文 \cite{einstein} 和 Dirac 的书 \cite{dirac}——这些都是与物理相关的条目。接下来，引用 Knuth 的两本书：\textit{Fundamental Algorithms} \cite{knuth-fa} 和 \textit{The Art of Computer Programming} \cite{knuth-acp}。

\medskip

\printbibliography
\end{document}
```

在 Overleaf 中打开此示例（ `sample.bib` 文件已为你创建）。

此示例生成如下输出：

![一个 biblatex 示例](/files/e4bd4e25de5888e86f22117dd8ab8550dcb10a34)

## 引用样式

常见的引用样式包括：

* `数字` 实现了一种用于正文引用的数字型引文方案。应与数字 [参考文献样式](/latex/zh-cn/can-kao-wen-xian-he-yin-yong/07-biblatex-bibliography-styles.md).
* `numeric-comp` 的紧凑变体 `数字` 模式配合使用。像 *\[1, 2, 3]* 这样的引用会被替换为 *\[1-3]*.
* `numeric-verb` 该样式的详述版本 `数字` 样式。而不是 *\[2, 5, 7]* 将打印 *\[2];\[5];\[7]*.
* `字母式` 一种字母式引用方案，类似于标准的 `alpha` 样式 **bibtex**。应与字母式参考文献样式配合使用。
* `alphabetic-verb` 该样式的详述版本 `字母式` 样式。而不是 *\[Doe98, Doe95, Farn2004]* 将打印 *\[Doe98];\[Doe95];\[Farn2004]*.
* `作者-年份` 实现作者-年份引用方案。应与作者-年份参考文献样式配合使用。
* `authoryear-comp` 的紧凑变体 `作者-年份` 样式。如果传给单个引用命令的后续参考文献具有相同作者，则作者只显示一次。打印 *Doe 1992, 1995* 而不是 *Doe 1992, Doe 1995*.
* `authoryear-ibid` 一种 `作者-年份` 用于脚注引用。将重复的引用替换为缩写 *ibidem*.
* `authoryear-icomp` 一种结合 `authoryear-comp` 和 `authoryear-ibid`
* `authortitle` 实现作者-标题方案。用于脚注中的引用。
* `authortitle-comp` 的紧凑变体 `authortitle`。而不是 *Doe, First title; Doe, Second title* 这将打印 *Doe, First title, Second title*.
* `authortitle-ibid` 一种 `authortitle` 用于脚注引用。将重复的引用替换为缩写 *ibidem*.
* `authortitle-icomp` 一种结合 `authortitle-comp` 和 `authortitle-ibid`.
* `authortitle-terse` 变体 `authoritle` 仅在参考文献中包含同一作者/编辑的多于一部作品时才打印标题。
* `authortitle-tcomp` 结合 `authortitle-terse` 和 `authortitle-comp`.
* `authortitle-ticomp` 结合 `authortitle-icomp` 和 `authortitle-terse`.
* `verbose` 一种引用样式：条目第一次被引用时打印完整引用，之后打印简短版本。
* `读法` 与同名参考文献样式配套的引用样式。加载 `authortitle` 样式。

在不同期刊和论文中还有其他非标准且很受欢迎的引用样式

* 在科学领域：
  * 美国化学会（ACS）样式
  * 美国物理学会（AIP）样式
  * 美国数学学会（AMS）样式
  * 温哥华体系
  * 电气与电子工程师协会（IEEE）样式
  * Nature 样式
  * Science 样式
* 在人文领域：
  * 芝加哥样式
  * 哈佛引用样式
  * MLA 样式
* 在社会科学领域：
  * 美国心理学会（APA）样式

| 引用样式    | `biblatex` stylename |
| ------- | -------------------- |
| ACS     | `chem-acs`           |
| AIP     | `phys` (\*)          |
| Nature  | `nature`             |
| Science | `science`            |
| IEEE    | `ieee`               |
| Chicago | `chicago-authordate` |
| MLA     | `mla`                |
| APA     | `apa`                |

（\*）这是一个新样式，参见 <http://ctan.org/pkg/biblatex-phys>

## 进一步阅读

更多信息请参见

* [LaTeX 中的参考文献管理](/latex/zh-cn/geng-duo-zhu-ti/05-bibliography-management-in-latex.md)
* [Biblatex 参考文献样式](/latex/zh-cn/can-kao-wen-xian-he-yin-yong/07-biblatex-bibliography-styles.md)
* [Biblatex 宏包文档](http://linorg.usp.br/CTAN/macros/latex/contrib/biblatex/doc/biblatex.pdf)
* [目录](/latex/zh-cn/wen-dang-jie-gou/02-table-of-contents.md)
* [大型项目中的管理](/latex/zh-cn/wen-dang-jie-gou/07-management-in-a-large-project.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://ayakaleaf-pro.ayaka.space/latex/zh-cn/can-kao-wen-xian-he-yin-yong/08-biblatex-citation-styles.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
