> 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/ko/figures-and-tables/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/e7bcbee60146f65ca7f7e83b305294218114abd5)

&#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` 는 설명이 필요 없으며, 첫 번째는 그림 목록을 생성하고 두 번째는 표 목록을 생성합니다. 이 예제에는 더 관련 있는 명령이 두 개 더 있습니다:

**\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/b3235aac0d3a623d2c1e871921098157458aef84)

&#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에서 설정한 언어 이름을 쓰세요.

**참고**: 목록이 올바르게 생성되려면 문서를 두 번 컴파일해야 할 수도 있습니다.

## 추가 읽을거리

자세한 내용은 다음을 참조하세요:

* [이미지 삽입](/latex/ko/more-topics/27-inserting-images.md)
* [표](/latex/ko/figures-and-tables/01-tables.md)
* [이미지와 표 배치](/latex/ko/figures-and-tables/02-positioning-images-and-tables.md)
* [절과 장](/latex/ko/document-structure/01-sections-and-chapters.md)
* [목차](/latex/ko/document-structure/02-table-of-contents.md)
* [색인](/latex/ko/document-structure/04-indices.md)
* [용어집](/latex/ko/document-structure/05-glossaries.md)
* [페이지 번호 매기기](/latex/ko/formatting/03-page-numbering.md)
* [대규모 프로젝트에서의 관리](/latex/ko/document-structure/07-management-in-a-large-project.md)
* [다중 파일 LaTeX 프로젝트](/latex/ko/document-structure/08-multi-file-latex-projects.md)
* [카운터](/latex/ko/formatting/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/ko/figures-and-tables/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.
