> For the complete documentation index, see [llms.txt](https://overleaf-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://overleaf-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{一个 bibLaTeX 示例}
\addbibresource{sample.bib} %导入参考文献文件

\begin{document}
\section{第一节}

被引用的项目：\textit{The \LaTeX\ Companion} 一书 \cite{latexcompanion}，以及爱因斯坦的期刊论文 \cite{einstein} 和狄拉克的书 \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://overleaf-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.
