> 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/tr/sekiller-ve-tablolar/03-lists-of-tables-and-figures.md).

# Tablo ve şekil listeleri

## Giriş

Tablo ve şekil listeleri bilgileri düzenli tutar ve belirli bir öğeye kolay erişim sağlar. Bu makale, şekiller listesini, tablolar listesini nasıl oluşturacağınızı ve her ikisinde de varsayılan başlığı nasıl değiştireceğinizi açıklar.

Basit bir örnekle başlayalım:

```latex
\documentclass{article}
\usepackage{graphicx}
\graphicspath{ {figures/} }
\usepackage{array}

\begin{document}

\thispagestyle{empty}
\listoffigures
\listoftables
\newpage
\pagenumbering{arabic}

Lorem ipsum dolor sit amet, consectetuer adipiscing
elit.  Etiam lobortisfacilisis...
\end{document}
```

![ListOfTablesAndFiguresEx1OLV2.png](/files/f1c46e3f4062e75522cda932dd4bfb18133bbfb6)

&#x20;[Overleaf'te bir örnek açın](https://www.overleaf.com/project/new/template/20148?id=68603601\&templateName=Lists+of+tables+and+figures\&latexEngine=pdflatex\&texImage=texlive-full%3A2020.1\&mainFile=)

Komutlar `\listoffigures` ve `\listoftables` kendi kendini açıklayıcıdır; ilki şekiller listesini, ikincisi ise tablolar listesini oluşturur. Bu örnekte ilgili iki komut daha vardır:

**\thispagestyle{empty}**

Sayfa numaralandırmasını kaldırır.

**\pagenumbering{arabic}**

Sayfa numaralandırmasını Arap rakamlarıyla yeniden başlatır.

## Adları değiştirme

Aşağıdaki örnekte gösterildiği gibi, varsayılan başlıklar olan "List of Tables" ve "List of Figures", herhangi başka bir metinle değiştirilebilir:

```latex
\documentclass{article}
\usepackage{graphicx}
\usepackage{array}
\graphicspath{ {figures/} }

\renewcommand{\listfigurename}{Çizimlerin listesi}
\renewcommand{\listtablename}{Tablolar}

\begin{document}

\thispagestyle{empty}
\listoffigures
\listoftables
\clearpage
\pagenumbering{arabic}

Lorem ipsum dolor sit amet, consectetuer adipiscing elit.  Etiam lobortisfacilisis...
\end{document}
```

![Listoffiguresandtables.png](/files/24fb79ee87ece6902dc17bd7ac137c6e475c3bb9)

&#x20;[Overleaf'te bir örnek açın](https://www.overleaf.com/project/new/template/20148?id=68603601\&templateName=Lists+of+tables+and+figures\&latexEngine=pdflatex\&texImage=texlive-full%3A2020.1\&mainFile=)

Başlıkları yeniden yazan komutlar şunlardır:

* `\renewcommand{\listfigurename}{Çizimlerin listesi}` "List of Figures" yerine "List of plots" yazacaktır.
* `\renewcommand{\listtablename}{Tablolar}` "List of Tables" yerine "Tables" yazacaktır.

Eğer `babel` belgesinde paketi kullanıyorsanız ve önceki komutlardan herhangi birini kullanmanız gerekiyorsa, onu şu komutun parantezlerinin içine yerleştirin: `\addto\captionsturkish{ }`. Bunun yerine `turkish` içinde `\captionturkish` babel'de ayarladığınız dilin adını yazın.

**Not**: listelerin düzgün oluşturulması için belgenizin iki kez derlenmesi gerekebilir.

## Daha fazla okuma

Daha fazla bilgi için bakınız:

* [Görseller Ekleme](/latex/tr/daha-fazla-konu/27-inserting-images.md)
* [Tablolar](/latex/tr/sekiller-ve-tablolar/01-tables.md)
* [Görsellerin ve tabloların konumlandırılması](/latex/tr/sekiller-ve-tablolar/02-positioning-images-and-tables.md)
* [Bölümler ve kısımlar](/latex/tr/belge-yapisi/01-sections-and-chapters.md)
* [İçindekiler](/latex/tr/belge-yapisi/02-table-of-contents.md)
* [Dizinler](/latex/tr/belge-yapisi/04-indices.md)
* [Sözlükler](/latex/tr/belge-yapisi/05-glossaries.md)
* [Sayfa numaralandırma](/latex/tr/bicimlendirme/03-page-numbering.md)
* [Büyük bir projede yönetim](/latex/tr/belge-yapisi/07-management-in-a-large-project.md)
* [Çok dosyalı LaTeX projeleri](/latex/tr/belge-yapisi/08-multi-file-latex-projects.md)
* [Sayaçlar](/latex/tr/bicimlendirme/10-counters.md)
* [LaTeX2ε'ye pek de kısa olmayan giriş](http://www.ctan.org/tex-archive/info/lshort/)


---

# 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/tr/sekiller-ve-tablolar/03-lists-of-tables-and-figures.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.
