> 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/latexer/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/ja/fonto/01-font-sizes-families-and-styles.md).

**クラスで指定されていないオプションを使用している:**

このエラーメッセージのもう一つの一般的な原因は、クラスで指定されていないオプションを使用した場合です。例えば、次のように書くことが挙げられます。 **`\documentclass[doublesided]{Thesis}`** 次のクラスで両面ページ形式を使おうとするときに **`Thesis`** クラスです。これは誤りです。なぜなら **`Thesis`** そのクラスではこのオプションを **`twosided`**&#x3068;名付けているからです。したがって、両面ページ形式を使うには、次のように書かなければなりません。 **`\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/ja/latexer/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.
