> 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/ja/to/03-lists-of-tables-and-figures.md).

# 表一覧と図一覧

## はじめに

表目次と図目次は情報を整理し、特定の要素へ簡単にアクセスできるようにします。本記事では、図目次と表目次の作成方法、そしてその両方で既定のタイトルを変更する方法を説明します。

まずは基本的な例から始めましょう:

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

&#x20;[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=)

コマンド `\listoffigures` と `\listoftables` は説明不要で、1つ目は図目次を生成し、2つ目は表目次を生成します。この例では、さらに次の2つの重要なコマンドがあります:

**\thispagestyle{empty}**

ページ番号を削除します。

**\pagenumbering{arabic}**

アラビア数字形式でページ番号を再開します。

## 名前の変更

次の例に示すように、既定のタイトル「List of Tables」と「List of Figures」は、任意の別のテキストに変更できます:

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

\renewcommand{\listfigurename}{プロット一覧}
\renewcommand{\listtablename}{表}

\begin{document}

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

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

![Listoffiguresandtables.png](/files/0045f15a7043304f8bbe3b5a202b398642f39431)

&#x20;[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=)

タイトルを書き換えるコマンドは次のとおりです:

* `\renewcommand{\listfigurename}{プロット一覧}` 「List of Figures」の代わりに「List of plots」と出力します。
* `\renewcommand{\listtablename}{表}` 「List of Tables」の代わりに「Tables」と出力します。

もし `babel` を文書で使用していて、前述のコマンドのいずれかを使う必要がある場合は、次の中括弧の中に入れてください: `\addto\captionsenglish{ }`。\` `english` \` の代わりに `\captionenglish` に、babel で設定した言語名を書いてください。

**注**: リストを正しく生成するには、文書を2回コンパイルする必要がある場合があります。

## さらに読む

詳細は以下を参照してください:

* [画像の挿入](/latex/ja/sononotopikku/27-inserting-images.md)
* [表](/latex/ja/to/01-tables.md)
* [画像と表の配置](/latex/ja/to/02-positioning-images-and-tables.md)
* [セクションと章](/latex/ja/wen-shu-gou-zao/01-sections-and-chapters.md)
* [目次](/latex/ja/wen-shu-gou-zao/02-table-of-contents.md)
* [索引](/latex/ja/wen-shu-gou-zao/04-indices.md)
* [用語集](/latex/ja/wen-shu-gou-zao/05-glossaries.md)
* [ページ番号](/latex/ja/shu-shi-she-ding/03-page-numbering.md)
* [大規模プロジェクトでの管理](/latex/ja/wen-shu-gou-zao/07-management-in-a-large-project.md)
* [複数ファイルのLaTeXプロジェクト](/latex/ja/wen-shu-gou-zao/08-multi-file-latex-projects.md)
* [カウンタ](/latex/ja/shu-shi-she-ding/10-counters.md)
* [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/ja/to/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.
