> 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/latex-1/32-unused-global-option-s.md).

# 사용되지 않는 전역 옵션

이 오류는 클래스의 전역 옵션 중 하나를 잘못 사용했을 때 나타납니다. LaTeX의 대부분의 클래스 파일에는 다음과 같은 여러 옵션이 포함되어 있으며, 예를 들면 **`10pt`** 글꼴 크기, 또는 **`a5paper`**. 이러한 항목은 문서 시작 부분의 대괄호 안에 삽입됩니다. **`\documentclass[options]{class}`** 문서 시작 부분에. 이러한 옵션을 잘못 지정하면 다음과 같은 오류 메시지가 생성됩니다.

main.tex

사용되지 않은 전역 옵션(들)

## 흔한 원인

**해당 클래스에서 사용할 수 없는 글꼴 옵션을 사용하는 경우:**

대부분의 표준 LaTeX 클래스는 다음만 허용합니다 **`10pt`**, **`11pt`** 또는 **`12pt`** 글꼴 옵션입니다. 예를 들어 다음과 같은 글꼴 옵션을 작성하면 **`\documentclass[13pt]{article}`** , 다음과 같은 *사용되지 않은 전역 옵션(들)* 오류가 발생합니다. 왜냐하면 **`13pt`** 글꼴 크기는 유효한 옵션이 아니기 때문입니다.

다음과 같은 일부 클래스는 **`scrbook`** 어떤 글꼴 크기든 옵션으로 받아들일 수 있습니다. 따라서 사용자는 다음과 같은 옵션을 작성할 수 있습니다 **`\documentclass[fontsize=16pt]{scrbook}`**. 새 클래스를 사용할 때는 항상 클래스 문서에서 어떤 글꼴 옵션을 사용할 수 있는지 확인해야 합니다.

더 다양한 글꼴 크기 옵션이 필요하다면, 다음 패키지의 클래스들을 고려해 볼 수 있습니다: [**`extsizes`**](http://ctan.org/pkg/extsizes) 패키지입니다. 이 패키지는 다음과 같은 클래스를 제공합니다: **`extarticle`**, **`extreport`**, **`extbook`** 및 **`extletter`**. 이러한 클래스는 다음과 같은 글꼴 옵션을 허용합니다: **`8pt`**, **`9pt`**, **`10pt`**, **`11pt`**, **`12pt`**, **`14pt`**, **`17pt`** 또는 **`20pt`**.

LaTeX의 다양한 글꼴 크기에 대해 더 알고 싶다면, 저희의 [문서](/latex/ko/fonts/01-font-sizes-families-and-styles.md).

**클래스에 지정되지 않은 옵션을 사용하는 경우:**

이 오류 메시지의 또 다른 흔한 원인은 클래스에 지정되지 않은 옵션을 사용하는 경우입니다. 예를 들어 다음과 같이 작성하는 것입니다 **`\documentclass[doublesided]{Thesis}`** 다음에 대해 양면 페이지 형식을 사용하려고 할 때 **`Thesis`** 클래스입니다. 이는 실수인데, 왜냐하면 **`Thesis`** 해당 클래스는 이 옵션의 이름을 **`twosided`**. 따라서 양면 페이지 형식을 사용하려면 다음과 같이 작성해야 합니다 **`\documentclass[twosided]{Thesis}`**.

이와 같은 옵션은 클래스마다 다를 수 있습니다. 그러므로 클래스 파일과 함께 제공되는 문서도 반드시 확인하는 것이 중요합니다. 이렇게 하면 해당 클래스에서 어떤 옵션을 사용할 수 있는지 알 수 있습니다.


---

# 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/latex-1/32-unused-global-option-s.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.
