> 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/id/gambar-dan-tabel/03-lists-of-tables-and-figures.md).

# Daftar Tabel dan Gambar

## Pendahuluan

Daftar tabel dan gambar menjaga informasi tetap terorganisasi dan memberikan akses mudah ke elemen tertentu. Artikel ini menjelaskan cara membuat daftar gambar, daftar tabel, dan cara mengubah judul bawaan pada keduanya.

Mari mulai dengan contoh dasar:

```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/abc8db4d6ac1437327ad0d93fa50e45f1dac5710)

&#x20;[Buka contoh di Overleaf](https://www.overleaf.com/project/new/template/20148?id=68603601\&templateName=Lists+of+tables+and+figures\&latexEngine=pdflatex\&texImage=texlive-full%3A2020.1\&mainFile=)

Perintah-perintah `\listoffigures` dan `\listoftables` sudah cukup jelas, yang pertama menghasilkan daftar gambar dan yang kedua daftar tabel. Dalam contoh ini ada dua perintah lain yang relevan:

**\thispagestyle{empty}**

Menghapus penomoran halaman.

**\pagenumbering{arabic}**

Memulai ulang penomoran halaman dengan angka bergaya Arab.

## Mengubah nama

Seperti ditunjukkan pada contoh berikut, judul bawaan, "List of Tables" dan "List of Figures", dapat diubah menjadi teks lain apa pun:

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

\renewcommand{\listfigurename}{List of plots}
\renewcommand{\listtablename}{Tables}

\begin{document}

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

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

![Listoffiguresandtables.png](/files/8d25bf07fadb88251b211ed29698dd85d799eea6)

&#x20;[Buka contoh di Overleaf](https://www.overleaf.com/project/new/template/20148?id=68603601\&templateName=Lists+of+tables+and+figures\&latexEngine=pdflatex\&texImage=texlive-full%3A2020.1\&mainFile=)

Perintah yang menulis ulang judul adalah:

* `\renewcommand{\listfigurename}{List of plots}` akan menulis "List of plots" вместо "List of Figures".
* `\renewcommand{\listtablename}{Tables}` akan menulis "Tables" вместо "List of Tables".

Jika Anda menggunakan `babel` paket di dokumen Anda dan Anda perlu menggunakan salah satu perintah sebelumnya, letakkan di dalam kurung kurawal dari `\addto\captionsenglish{ }`. Alih-alih `Inggris` di `\captionenglish` tuliskan nama bahasa yang Anda atur di babel.

**Catatan**: dokumen Anda mungkin perlu dikompilasi dua kali agar daftar dapat dihasilkan dengan benar.

## Bacaan lebih lanjut

Untuk informasi lebih lanjut lihat:

* [Menyisipkan Gambar](/latex/id/topik-lainnya/27-inserting-images.md)
* [Tabel](/latex/id/gambar-dan-tabel/01-tables.md)
* [Penempatan gambar dan tabel](/latex/id/gambar-dan-tabel/02-positioning-images-and-tables.md)
* [Bagian dan bab](/latex/id/struktur-dokumen/01-sections-and-chapters.md)
* [Daftar isi](/latex/id/struktur-dokumen/02-table-of-contents.md)
* [Indeks](/latex/id/struktur-dokumen/04-indices.md)
* [Glosarium](/latex/id/struktur-dokumen/05-glossaries.md)
* [Penomoran halaman](/latex/id/pemformatan/03-page-numbering.md)
* [Pengelolaan dalam proyek besar](/latex/id/struktur-dokumen/07-management-in-a-large-project.md)
* [Proyek LaTeX multi-file](/latex/id/struktur-dokumen/08-multi-file-latex-projects.md)
* [Penghitung](/latex/id/pemformatan/10-counters.md)
* [Pengantar LaTeX2ε yang tidak terlalu singkat](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/id/gambar-dan-tabel/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.
