> 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/it/figure-e-tabelle/03-lists-of-tables-and-figures.md).

# Elenchi di tabelle e figure

## Introduzione

Un elenco delle tabelle e delle figure mantiene le informazioni organizzate e consente un facile accesso a un elemento specifico. Questo articolo spiega come creare un elenco delle figure, un elenco delle tabelle e come cambiare il titolo predefinito in entrambi.

Cominciamo con un esempio base:

```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/1140578a4a4e5f2e905ed5c25a594ef56d50eff1)

&#x20;[Apri un esempio su 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=)

I comandi `\listoffigures` e `\listoftables` sono autoesplicativi: il primo genera l'elenco delle figure e il secondo l'elenco delle tabelle. In questo esempio ci sono altri due comandi rilevanti:

**\thispagestyle{empty}**

Rimuove la numerazione delle pagine.

**\pagenumbering{arabic}**

Riavvia la numerazione delle pagine con numeri in stile arabo.

## Cambiare i nomi

Come mostrato nel seguente esempio, i titoli predefiniti, "List of Tables" e "List of Figures", possono essere cambiati con qualsiasi altro testo:

```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/9ab7fa98a57e4810d24785b43feeefafc8028e9a)

&#x20;[Apri un esempio su 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=)

I comandi che riscrivono i titoli sono:

* `\renewcommand{\listfigurename}{List of plots}` scriverà "List of plots" invece di "List of Figures".
* `\renewcommand{\listtablename}{Tables}` scriverà "Tables" invece di "List of Tables".

Se utilizzi il `babel` pacchetto nel tuo documento e devi utilizzare uno dei comandi precedenti, inseriscilo tra le parentesi graffe di `\addto\captionsenglish{ }`. Al posto di `inglese` in `\captionenglish` scrivi il nome della lingua impostata in babel.

**Nota**: il tuo documento potrebbe dover essere compilato due volte affinché gli elenchi vengano generati correttamente.

## Ulteriori letture

Per ulteriori informazioni, vedi:

* [Inserimento di immagini](/latex/it/altri-argomenti/27-inserting-images.md)
* [Tabelle](/latex/it/figure-e-tabelle/01-tables.md)
* [Posizionamento di immagini e tabelle](/latex/it/figure-e-tabelle/02-positioning-images-and-tables.md)
* [Sezioni e capitoli](/latex/it/struttura-del-documento/01-sections-and-chapters.md)
* [Indice](/latex/it/struttura-del-documento/02-table-of-contents.md)
* [Indici](/latex/it/struttura-del-documento/04-indices.md)
* [Glossari](/latex/it/struttura-del-documento/05-glossaries.md)
* [Numerazione delle pagine](/latex/it/formattazione/03-page-numbering.md)
* [Gestione in un progetto di grandi dimensioni](/latex/it/struttura-del-documento/07-management-in-a-large-project.md)
* [Progetti LaTeX multi-file](/latex/it/struttura-del-documento/08-multi-file-latex-projects.md)
* [Contatori](/latex/it/formattazione/10-counters.md)
* [La non proprio breve introduzione a LaTeX2ε](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/it/figure-e-tabelle/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.
