> 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/more-topics/32-latex-video-tutorial-for-beginners-video-2.md).

# 초보자를 위한 LaTeX 동영상 튜토리얼(동영상 2)

[동영상 1](/latex/ko/more-topics/31-latex-video-tutorial-for-beginners-video-1.md) | 동영상 2 | [동영상 3](/latex/ko/more-topics/33-latex-video-tutorial-for-beginners-video-3.md) | [동영상 4](/latex/ko/more-topics/34-latex-video-tutorial-for-beginners-video-4.md) | [동영상 5](/latex/ko/more-topics/35-latex-video-tutorial-for-beginners-video-5.md) | [동영상 6](/latex/ko/more-topics/36-latex-video-tutorial-for-beginners-video-6.md) | 동영상 7

이 7부작 LaTeX 튜토리얼 동영상 시리즈는 2013년에 처음 공개되었습니다. 따라서 ShareLaTeX의 개발과 그 이후 ShareLaTeX와 Overleaf의 통합으로 인해 오늘날의 편집기 인터페이스는 상당히 달라졌습니다. 그러나 동영상 내용은 여전히 유효하며, 모든 플랫폼에 적용되는 기술과 전문 지식인 LaTeX의 기초를 알려 줍니다. 이전 배경 지식은 전혀 필요하지 않으며, 이 LaTeX 가이드를 끝내면 기본적인 LaTeX 문서를 만들고 작성할 수 있게 되고, 더 복잡한 문서를 만드는 법을 배우기 시작할 수 있는 지식을 갖추게 됩니다. 각 동영상에는 대본이 함께 제공되며(동영상 아래에 나열됨), 이러한 현장 대본은 각 튜토리얼의 시작 부분에 표시된 URL을 대체합니다.

### LaTeX의 문단과 섹션

**참고:** 동영상에서 사용된 프로젝트는 [이 링크를 따라가면 열 수 있습니다](https://www.sharelatex.com/project/51e68895fdf7a9bd7b305993).

{% embed url="<https://www.youtube.com/embed/3Ja6WZoXW3U>" %}

### 동영상 대본

다음에서 [이전 동영상](/latex/ko/more-topics/31-latex-video-tutorial-for-beginners-video-1.md) 우리는 ShareLaTeX 설정을 도와드리고, 몇 가지 기능을 보여드렸으며, 첫 문서를 만드는 데 도움을 드렸습니다. 이 동영상에서는 섹션과 문단을 사용해 문서를 나누는 방법을 살펴보겠습니다. 지난번에 만든 문서를 열어 봅시다.

현재 문서에는 ‘Introduction’이라는 섹션 하나만 있습니다. 실습 보고서처럼 보이도록 몇 개 더 추가해 봅시다. 섹션을 더 세분화하여 하위 섹션으로 나누는 것이 종종 도움이 됩니다. 이는 `\subsection` 명령을 사용해 만들 수 있습니다. 원한다면 하위 하위 섹션을 추가해 더 낮은 수준까지 갈 수도 있습니다.

이제 문단에 대해 이야기해 봅시다. 새 문단을 시작하려면 코드에 빈 줄을 하나 넣어야 합니다. 그러면 새 줄이 시작되고 자동으로 들여쓰기가 됩니다. 빈 줄을 두 줄 이상 넣어도 한 줄만 넣은 것과 같습니다. 그러나 줄바꿈만 한 번 하면 LaTeX는 이를 무시합니다. LaTeX가 새 문단 없이 새 줄만 시작하게 하려면 백슬래시 두 개를 사용할 수 있지만, 이는 좋지 않은 스타일이므로 권장되지 않습니다.

다음에서 [이전 동영상](/latex/ko/more-topics/31-latex-video-tutorial-for-beginners-video-1.md) 우리는 잠깐 `\maketitle` 명령은 서문에서 가져온 작성자와 날짜 정보와 함께 제목을 추가합니다. 문서에 항상 큰 제목이 필요하지는 않을 수 있으므로, 주석 처리하여 쉽게 제거할 수 있습니다. 이렇게 하려면 해당 명령 바로 앞에 퍼센트 기호를 붙이면 됩니다.

이제 주석에 대한 이야기로 넘어가겠습니다. 주석은 문서를 컴파일할 때 LaTeX가 무시하는 코드의 일부입니다. 작성 중인 내용이 주석임을 LaTeX에 알리려면 텍스트 앞에 퍼센트 기호를 붙이면 됩니다. 그러면 해당 줄에서 퍼센트 기호 뒤에 오는 텍스트는 모두 무시됩니다. 주석은 코드를 읽는 사람에게 코드가 무엇을 하는지 또는 그 목적이 무엇인지 알려 주기 위해 존재합니다. 코드에는 정기적으로 주석을 다는 것이 좋습니다. 예를 들어, 문서의 목적을 설명하기 위해 코드 맨 위에 주석을 작성할 수 있습니다. 또한 섹션의 일부가 아직 끝나지 않았다는 것을 기억해 두기 위해 주석을 달 수도 있습니다. 주석은 make title 명령에서 했던 것처럼 코드를 삭제하지 않고 비활성화할 때도 유용합니다.

이로써 섹션과 문단에 대한 논의를 마치겠습니다. 다음 동영상에서는 LaTeX를 사용해 기본적인 수학과 방정식을 작성하는 방법을 살펴보겠습니다.

[동영상 1](/latex/ko/more-topics/31-latex-video-tutorial-for-beginners-video-1.md) | 동영상 2 | [동영상 3](/latex/ko/more-topics/33-latex-video-tutorial-for-beginners-video-3.md) | [동영상 4](/latex/ko/more-topics/34-latex-video-tutorial-for-beginners-video-4.md) | [동영상 5](/latex/ko/more-topics/35-latex-video-tutorial-for-beginners-video-5.md) | [동영상 6](/latex/ko/more-topics/36-latex-video-tutorial-for-beginners-video-6.md) | 동영상 7


---

# 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/more-topics/32-latex-video-tutorial-for-beginners-video-2.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.
