> 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/on-premises/ko/configuration/overleaf-toolkit/branding.md).

# 브랜딩

### 헤더 <a href="#header" id="header"></a>

이 섹션에서는 온프레미스 인스턴스의 주요 요소를 개인화하는 방법을 다룹니다. 사이트 제목, 탐색 링크, 헤더, 푸터, 로고를 원하는 대로 사용자 지정할 수 있습니다.

### 사이트 제목 <a href="#site-title" id="site-title"></a>

탐색 모음 제목은 다음 값으로 사용자 지정할 수 있습니다: `OVERLEAF_NAV_TITLE` 환경 변수입니다. 로고가 설정되지 않은 경우 이 텍스트가 탐색 영역의 왼쪽 상단에 사용됩니다.

```bash
# config/variables.env에 추가
OVERLEAF_NAV_TITLE=우리 Overleaf 인스턴스
```

## 로고

환경 변수를 설정하여 텍스트 대신 사용자 지정 로고를 추가할 수 있습니다. `OVERLEAF_HEADER_IMAGE_URL`. 이 값은 외부에 호스팅된 이미지 파일을 가리켜야 합니다.

config/variables.env에 추가:

{% code title="config/variables.env" %}

```bash
# config/variables.env에 추가
OVERLEAF_HEADER_IMAGE_URL=https://mysite.somewhere.com/img/logo.png
```

{% endcode %}

## 헤더 탐색 링크

탐색 헤더에 추가 탐색 항목을 다음 값을 설정하여 추가할 수 있습니다: `OVERLEAF_HEADER_EXTRAS` 환경 변수를 객체의 JSON 배열로 설정합니다. 예를 들면:

{% code overflow="wrap" %}

```json
[\
  {\
    "text": "예시 링크",\
    "url": "http://example.com/somelink",\
    "class": "subdued",\
    "only_when_logged_out": true\
  },\
  {\
    "text": "도움말",\
    "class": "subdued",\
    "dropdown": [\
      {\
        "text": "문서",\
        "url": "/learn"\
      },\
      {\
        "text": "관리자에게 문의",\
        "url": "http://example.com/contact"\
      }\
    ]\
  }\
]
```

{% endcode %}

이스케이프된 JSON 형식을 toolkit/variables.env에 추가합니다:

{% code title="toolkit/variables.env" overflow="wrap" %}

```bash
# toolkit/variables.env에 추가
OVERLEAF_HEADER_EXTRAS=[{"text":"예시 링크","url":"http://example.com/somelink","class":"subdued","only_when_logged_out":true},{"text":"도움말","class":"subdued","dropdown":[{"text":"문서","url":"/learn"},{"text":"관리자에게 문의","url":"http://example.com/contact"}]}]
```

{% endcode %}

## 푸터

왼쪽 푸터와 더 작은 오른쪽 푸터(다음과 같은 페이지에서 확인할 수 있음)를 모두 사용자 지정할 수 있습니다. `/project`) 다음 환경 변수를 사용하여 `OVERLEAF_LEFT_FOOTER` 그리고 `OVERLEAF_RIGHT_FOOTER`. 둘 다 삽입될 JSON 객체 배열을 기대합니다.

둘 다 삽입될 JSON 배열을 기대합니다.

```json
[\
  {\
    "text": "이것은 예시 텍스트 푸터 항목입니다!"\
  },\
  {\
    "text": "이것은 예시 URL 푸터 링크입니다!", "url" : "/my-first-link.htm"\
  }\
]
```

{% hint style="info" %}
사용할 때 `텍스트` 만 사용하면 값이 원시 텍스트로 렌더링되므로 HTML을 포함해서는 안 됩니다.
{% endhint %}

이 데이터는 작동하려면 유효한 JSON이어야 하며, 환경 변수로 전달할 때 따옴표를 이스케이프해야 합니다.

{% code title="config/variables.env" overflow="wrap" %}

```bash
# config/variables.env에 추가
OVERLEAF_LEFT_FOOTER=[{"text": "이것은 예시 텍스트 푸터 항목입니다!"}]
OVERLEAF_RIGHT_FOOTER=[{"text": "이것은 예시 URL 푸터 링크입니다!", "url" : "/my-first-link.htm"}]
```

{% endcode %}

{% hint style="info" %}
다음 외에도 `텍스트` 그리고 `URL`, JSON 객체는 또한 다음 속성을 허용합니다 `클래스` 그리고 `레이블` 추가 사용자 지정을 위해.
{% endhint %}


---

# 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/on-premises/ko/configuration/overleaf-toolkit/branding.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.
