> 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/uk/posilannya-ta-cituvannya/04-bibtex-bibliography-styles.md).

# Стилі бібліографії BibTeX

## Вступ і приклад

Під час використання [BibTeX](/latex/uk/posilannya-ta-cituvannya/01-bibliography-management-with-bibtex.md), стиль бібліографії встановлюється, а файл бібліографії імпортується за допомогою таких двох команд:

```latex
  \bibliographystyle{stylename}
  \bibliography{bibfile}
```

де `bibfile` є назвою бібліографії `.bib` файлу, без розширення, а `stylename` є одним із значень, наведених у [таблиці нижче](#table-of-stylename-values).

Ось приклад, який ви можете відкрити в Overleaf — `.bib` файл створюється для вас:

```latex
\documentclass[a4paper,10pt]{article}
\usepackage[english]{babel}
%Включає «References» до змісту
\usepackage[nottoc]{tocbibind}

%Назва, дата й автор документа
\title{Керування бібліографією: BibTeX}
\author{Overleaf}

%Початок документа
\begin{document}

\maketitle

\tableofcontents

\medskip

\section{Перший розділ}
Цей документ є прикладом використання BibTeX у керуванні бібліографією. Наводяться три посилання: книга \textit{The \LaTeX\ Companion} \cite{latexcompanion}, журнальна стаття Ейнштейна \cite{einstein} та вебсайт Дональда Кнута \cite{knuthwebsite}. Пов’язані з \LaTeX\ матеріали — \cite{latexcompanion,knuthwebsite}.

\medskip

%Встановлює стиль бібліографії UNSRT і імпортує
%файл бібліографії "sample.bib".
\bibliographystyle{unsrt}
\bibliography{sample}
\end{document}
```

[Відкрити в Overleaf (створюється відповідний .bib-файл)](<https://www.overleaf.com/docs?engine=\&snip_name\[]=main.tex\&snip\[]=\documentclass\[a4paper,10pt]{article}&#xA;\usepackage\[english]{babel}&#xA;%Includes+"References"+in+the+table+of+contents&#xA;\usepackage\[nottoc]{tocbibind}&#xA;&#xA;%Title,+date+an+author+of+the+document&#xA;\title{Bibliography+management:+BibTeX}&#xA;\author{Overleaf}&#xA;&#xA;%Begining+of+the+document&#xA;\begin{document}&#xA;&#xA;\maketitle&#xA;&#xA;\tableofcontents&#xA;&#xA;\medskip&#xA;&#xA;\section{First+Section}&#xA;This+document+is+an+example+of+BibTeX+using+in+bibliography+management.+Three+items+are+cited:+\textit{The+\LaTeX\\+Companion}+book+\cite{latexcompanion},+the+Einstein+journal+paper+\cite{einstein},+and+the+Donald+Knuth's+website+\cite{knuthwebsite}.+The+\LaTeX\\+related+items+are+\cite{latexcompanion,knuthwebsite}.+&#xA;&#xA;\medskip&#xA;&#xA;%Sets+the+bibliography+style+to+UNSRT+and+imports+the+&#xA;%bibliography+file+"sample.bib".&#xA;\bibliographystyle{unsrt}&#xA;\bibliography{sample}&#xA;\end{document}\&snip_name\[]=sample.bib\&snip\[]=@article{einstein,&#xA;++author+=+++++++"Albert+Einstein",&#xA;++title+=++++++++"{Zur+Elektrodynamik+bewegter+K{\\"o}rper}.+({German})&#xA;+++++++++++++++++\[{On}+the+electrodynamics+of+moving+bodies]",&#xA;++journal+=++++++"Annalen+der+Physik",&#xA;++volume+=+++++++"322",&#xA;++number+=+++++++"10",&#xA;++pages+=++++++++"891--921",&#xA;++year+=+++++++++"1905",&#xA;++DOI+=++++++++++"http://dx.doi.org/10.1002/andp.19053221004"&#xA;}&#xA;&#xA;@book{latexcompanion,&#xA;++++author++++=+"Michel+Goossens+and+Frank+Mittelbach+and+Alexander+Samarin",&#xA;++++title+++++=+"The+\LaTeX\\+Companion",&#xA;++++year++++++=+"1993",&#xA;++++publisher+=+"Addison-Wesley",&#xA;++++address+++=+"Reading,+Massachusetts"&#xA;}&#xA;+&#xA;@misc{knuthwebsite,&#xA;++++author++++=+"Donald+Knuth",&#xA;++++title+++++=+"Knuth:+Computers+and+Typesetting",&#xA;++++url+++++++=+"http://www-cs-faculty.stanford.edu/\\~{}uno/abcde.html"&#xA;}\&main_document=main.tex>)

## Таблиця значень stylename

| stylename | вивід                                                                      |
| --------- | -------------------------------------------------------------------------- |
| `abbrv`   | ![BibtexStylesEx1.png](/files/2a759e8faa9ae2a4b2aa3526308a4911e371a2d5)    |
| `acm`     | ![BibtexStylesEx2.png](/files/640a8e65ef79602d2d4b689948e1251b656b8ec9)    |
| `alpha`   | ![BibtexStylesEx3.png](/files/33c2528a86277f9750aed77dd1f321e3b2f69e77)    |
| `apalike` | ![BibtexStylesEx4.png](/files/d86c14fbcc92fea02099375576088ed324772278)    |
| `ieeetr`  | ![BibtexStylesEx5.png](/files/59f7910170ae2f7c11f6cf9c0dda003594dc5957)    |
| `plain`   | ![BibtexStylesEx6new.png](/files/6593215d8c3119915483bea9f2cdea4d814f704c) |
| `siam`    | ![BibtexStylesEx7.png](/files/00edacc32d18ae5a24b37330c8951b4d68b9f082)    |
| `unsrt`   | ![BibtexStylesEx8.png](/files/c67c34b5e56e8408048f7daea64a546de037cb30)    |

## Додаткове читання

Докладніше див.:

* [Керування списком літератури за допомогою BibTeX](/latex/uk/posilannya-ta-cituvannya/01-bibliography-management-with-bibtex.md)
* [Документація BibTeX на вебсайті CTAN](http://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/)
* [документація пакета tocbind](ftp://ftp.tex.ac.uk/tex-archive/macros/latex/contrib/tocbibind/tocbibind.pdf)
* [Керування бібліографією з natbib](/latex/uk/posilannya-ta-cituvannya/02-bibliography-management-with-natbib.md)
* [Керування бібліографією з biblatex](/latex/uk/posilannya-ta-cituvannya/03-bibliography-management-with-biblatex.md)
* [Зміст](/latex/uk/struktura-dokumenta/02-table-of-contents.md)
* [Керування у великому проєкті](/latex/uk/struktura-dokumenta/07-management-in-a-large-project.md)
* [Багатофайлові проєкти LaTeX](/latex/uk/struktura-dokumenta/08-multi-file-latex-projects.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/uk/posilannya-ta-cituvannya/04-bibtex-bibliography-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.
