> 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-tw/can-kao-wen-xian-yu-yin-wen/08-biblatex-citation-styles.md).

# biblatex 引文樣式

## 簡介與範例

Biblatex 提供許多引用樣式，但如果未設定引用樣式，LaTeX 會使用與……相符的 [參考書目樣式](/latex/zh-tw/can-kao-wen-xian-yu-yin-wen/07-biblatex-bibliography-styles.md)。以下是一個展示使用……的最小範例 `biblatex` 參數 `style=alphabetic` 以將引用樣式設為 `字母式`.

```latex
\documentclass{article}
\usepackage[
backend=biber,
style=alphabetic,
]{biblatex}
\title{A bibLaTeX example}
\addbibresource{sample.bib} %匯入參考書目檔案

\begin{document}
\section{First 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/877b64198ff8ee3a65bcfe5fd9549bedb722245a)

## 引用樣式

常見的引用樣式包括：

* `數字式` 實作一種數字引用方案，適用於文內引用。應與數字式 [參考書目樣式](/latex/zh-tw/can-kao-wen-xian-yu-yin-wen/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` 實作作者-年份引用方案。應與作者-年份參考書目樣式搭配使用。
* `authoryear-comp` 簡潔變體的 `authoryear` 樣式。若傳入同一引用指令的後續參考文獻與前者作者相同，則作者只會輸出一次。輸出 *Doe 1992, 1995* 而不是 *Doe 1992, Doe 1995*.
* `authoryear-ibid` ……的一種變體 `authoryear` 適用於註腳引用。將重複引用替換為縮寫 *同上*.
* `authoryear-icomp` 一種結合……特點的樣式 `authoryear-comp` 以及 `authoryear-ibid`
* `authortitle` 實作作者-標題方案。用於註腳中的引用。
* `authortitle-comp` 的簡潔變體 `authortitle`。取代 *Doe, First title; Doe, Second title* 這將輸出 *Doe, First title, Second title*.
* `authortitle-ibid` ……的一種變體 `authortitle` 適用於註腳引用。將重複引用替換為縮寫 *同上*.
* `authortitle-icomp` 一種結合 `authortitle-comp` 以及 `authortitle-ibid`.
* `authortitle-terse` ……的變體 `authoritle` 只有在參考書目中包含該作者/編者的多於一部作品時才輸出標題。
* `authortitle-tcomp` 結合……的樣式 `authortitle-terse` 以及 `authortitle-comp`.
* `authortitle-ticomp` 結合……的樣式 `authortitle-icomp` 以及 `authortitle-terse`.
* `詳盡式` 在條目首次被引用時輸出完整引用，之後則輸出簡短版本的引用樣式。
* `閱讀式` 與同名參考書目樣式搭配的引用樣式。會載入 `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-tw/geng-duo-zhu-ti/05-bibliography-management-in-latex.md)
* [Biblatex 參考書目樣式](/latex/zh-tw/can-kao-wen-xian-yu-yin-wen/07-biblatex-bibliography-styles.md)
* [Biblatex 套件文件](http://linorg.usp.br/CTAN/macros/latex/contrib/biblatex/doc/biblatex.pdf)
* [目錄](/latex/zh-tw/wen-jian-jie-gou/02-table-of-contents.md)
* [大型專案中的管理](/latex/zh-tw/wen-jian-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-tw/can-kao-wen-xian-yu-yin-wen/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.
