> 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/questions-and-answers/39-how-do-i-use-the-frontespizio-package.md).

# frontespizio 패키지는 어떻게 사용하나요?

다음 [`표지` 패키지](http://www.ctan.org/tex-archive/macros/latex/contrib/frontespizio) 이탈리아 대학의 논문에 적합한 스타일로 표지를 조판합니다. 표지는 별도의 PDF로 생성되며, 이후 메인 프로젝트에 다시 포함됩니다. 즉, 표지를 만들기 위해서는 특별한 컴파일 단계가 필요합니다. Overleaf에서 이를 구현하려면 다음을 사용할 수 있습니다. `\write18` 를 사용해 컴파일을 시작합니다. 예를 들면 다음과 같습니다:

```latex
\begin{frontespizio}
\Istituzione{토리노 공과대학교}
% ... 여기에는 다른 정보가 들어갑니다
\end{frontespizio}
\IfFileExists{\jobname-frn.pdf}{}{%
\immediate\write18{pdflatex \jobname-frn}}
```

표지 컴파일에 실패하면 listings 패키지를 사용한 뒤 다음을 넣어

```latex
\lstinputlisting{output-frn.log}
```

위 코드 뒤에 추가하면 로그 파일을 메인 프로젝트로 가져올 수 있으며, 그곳에서 내용을 읽고 문제를 찾을 수 있습니다.

LuaLaTeX 컴파일러를 사용하는 경우, 이를 위해 프리앰블에 다음을 추가해야 한다는 점에 유의하세요.

```latex
\usepackage{shellesc}
```

이 작동하도록 하려면 `\write18` 또는 `\ShellEsc` 명령 [를 LuaLaTeX에서 사용할 수 있게 해야 합니다](https://tex.stackexchange.com/a/366200/226).


---

# 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/questions-and-answers/39-how-do-i-use-the-frontespizio-package.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.
