> 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/27-no-author-given.md).

# \author가 지정되지 않음

이 오류는 다음을 사용했을 때 **`\maketitle`** 명령을 사용했지만, 아무 것도 지정하지 않은 경우 **`\author`**. 이에 대한 예는 아래에 나와 있습니다:

```latex
%프리앰블에
\title{열의 일반 분자 이론에 대하여}

% 문서 본문에
\maketitle
```

main.tex, 5행

저자가 지정되지 않았습니다.

저자를 포함하면 이 오류를 해결할 수 있습니다:

```latex
%프리앰블에
\title{열의 일반 분자 이론에 대하여}
\author{A. Einstein}

% 문서 본문에
\maketitle
```

제목 페이지에 저자를 지정하고 싶지 않다면 다음과 같이 정의할 수 있습니다 **`\author{...}`** 아래와 같이 비워 둘 수 있습니다

```latex
%프리앰블에
\title{열의 일반 분자 이론에 대하여}
\author{}

% 문서 본문에
\maketitle
```

이렇게 하면 제목 페이지에서 보통 저자가 적히는 자리에 일부 공백이 남습니다. 이 공백을 제거하고 싶다면 다음을 확인해 보세요: [**`titling`**](http://ctan.org/pkg/titling) 패키지.


---

# 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/27-no-author-given.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.
