> 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/formatting/08-single-sided-and-double-sided-documents.md).

# 단면 인쇄 및 양면 인쇄 문서

## 소개

LaTeX에는 다음을 포함해 다양한 유형의 문서를 만들 때 사용할 수 있는 여러 “표준” 클래스가 함께 제공됩니다: `article`, `book`, `report`, `letter`, `슬라이드` 및 `proc` (회의록용). LaTeX는 또한 `minimal` 클래스를 디버깅 용도나 직접 클래스 파일을 작성하기 위한 기초로 제공합니다. 많은 추가 문서 클래스는 [Overleaf 템플릿 갤러리](https://www.overleaf.com/latex/templates)에 게시되어 있거나, [CTAN에서 다운로드할 수 있습니다](https://ctan.org/topic/class).

## 양면 문서 만들기

양면 문서를 만들려면 `twoside` 옵션을 `\documentclass` 선언에 전달합니다. 예를 들면:

```latex
\documentclass[twoside]{article}
```

**참고**:

* 다음 `book` 클래스는 기본적으로 양면이므로 `twoside` 옵션을 찾습니다.
* 다음 `슬라이드` 클래스는 `twoside` 옵션을 지원하지 않습니다. 아마도 발표 슬라이드에 그렇게 하는 것은 말이 되지 않기 때문일 것입니다.

### 문서 레이아웃을 살펴보는 Overleaf 예제

다음 예제는 `레이아웃` 패키지를 사용해 그래픽을 만들어, 선택한 문서 클래스의 초기 (*기본*) 문서 레이아웃을 보여주는 작은 Overleaf 프로젝트를 제공합니다. 이러한 기본값은 패키지를 불러와 바꿀 수 있으며, 예를 들어 `geometry`와 같은 패키지는 LaTeX의 페이지 레이아웃 매개변수의 기본값을 변경합니다. 문서 [페이지 크기 및 여백](/latex/ko/formatting/07-page-size-and-margins.md) 및 [LaTeX의 페이지 레이아웃 매개변수에 대한 시각적 가이드](/latex/ko/in-depth-articles/04-a-visual-guide-to-latex-s-page-layout-parameters.md) 에서 자세한 정보를 확인하세요.

양면 문서의 경우, `book` 클래스와, 그리고 다음 옵션을 사용하는 다른 클래스의 `twoside` 옵션을 사용하면, 이 예제는 왼쪽 페이지와 오른쪽 페이지에 대해 별도의 그래픽을 생성합니다. 프로젝트를 열면 다음에 대한 왼쪽 및 오른쪽 페이지가 표시됩니다: `\documentclass[twoside]{article}`.

```latex
% 시각화할 레이아웃의 문서 클래스를 선택하세요: 주석을 해제
% 원하는 것을 주석 해제하고, 나머지는 주석 처리하세요.
% \documentclass[a4paper]{article} %A4 용지 크기를 기준으로 한 페이지를 생성합니다
% \documentclass[a4paper]{report} %A4 용지 크기를 기준으로 한 페이지를 생성합니다
% \documentclass[twoside,a4paper]{report} %A4 용지 크기를 기준으로 두 페이지를 생성합니다
% \documentclass[a4paper]{book} %A4 용지 크기를 기준으로 두 페이지를 생성합니다
% \documentclass[a4paper]{letter} %A4 용지 크기를 기준으로 한 페이지를 생성합니다
% \documentclass[twoside, a4paper]{letter} %A4 용지 크기를 기준으로 두 페이지를 생성합니다
\documentclass[twoside,a4paper]{article} %A4 용지 크기를 기준으로 두 페이지를 생성합니다
\usepackage{layout}
\begin{document}
\layout
\end{document}
```

[이 프로젝트를 열어 표준 LaTeX 문서 클래스의 레이아웃을 살펴보세요.](https://www.overleaf.com/docs?engine=pdflatex\&snip_name=document+class+layout\&snip=%25+Choose+the+document+class+whose+layout+you+want+to+visualize%3A+uncomment%0A%25+the+one+you+want%2C+comment+out+the+others.%0A%25+%5Cdocumentclass%5Ba4paper%5D%7Barticle%7D+%25Produces+one+page+%28based+on+A4+paper+size%29%0A%25+%5Cdocumentclass%5Ba4paper%5D%7Breport%7D+%25Produces+one+page+%28based+on+A4+paper+size%29%0A%25+%5Cdocumentclass%5Btwoside%2Ca4paper%5D%7Breport%7D+%25Produces+two+pages+%28based+on+A4+paper+size%29%0A%25+%5Cdocumentclass%5Ba4paper%5D%7Bbook%7D+%25Produces+two+pages+%28based+on+A4+paper+size%29%0A%25+%5Cdocumentclass%5Ba4paper%5D%7Bletter%7D+%25Produces+one+page+%28based+on+A4+paper+size%29%0A%25+%5Cdocumentclass%5Btwoside%2C+a4paper%5D%7Bletter%7D+%25Produces+two+pages+%28based+on+A4+paper+size%29%0A%5Cdocumentclass%5Btwoside%2Ca4paper%5D%7Barticle%7D+%25Produces+two+pages+%28based+on+A4+paper+size%29%0A%5Cusepackage%7Blayout%7D%0A%5Cbegin%7Bdocument%7D%0A%5Clayout%0A%5Cend%7Bdocument%7D)

다음 이미지에 보이는 것과 같은 그래픽을 생성하는 예제입니다. 아래 이미지는 이 글에서의 설명을 명확하게 하기 위해 잘라내거나 편집했음을 참고하세요.

![LaTeX 문서 레이아웃을 보여주는 이미지](/files/2130245f45d09cb4f4ed25ae94519b9633d6e5fc)

## 추가 읽을거리

* [`geometry` 패키지 문서](https://ctan.org/pkg/geometry?lang=en)
* [LaTeX의 페이지 레이아웃 매개변수에 대한 시각적 가이드](/latex/ko/in-depth-articles/04-a-visual-guide-to-latex-s-page-layout-parameters.md)
* [페이지 크기 및 여백](/latex/ko/formatting/07-page-size-and-margins.md)
* [각주](/latex/ko/formatting/14-footnotes.md)
* [여백 주석](/latex/ko/formatting/15-margin-notes.md)
* [머리말과 꼬리말](/latex/ko/formatting/02-headers-and-footers.md)
* [섹션과 장](/latex/ko/document-structure/01-sections-and-chapters.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/06-text-alignment.md)
* [글꼴 크기, 패밀리 및 스타일](/latex/ko/fonts/01-font-sizes-families-and-styles.md)
* [이미지 삽입](/latex/ko/more-topics/27-inserting-images.md)
* [이미지와 표 배치하기](/latex/ko/figures-and-tables/02-positioning-images-and-tables.md)


---

# 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/formatting/08-single-sided-and-double-sided-documents.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.
