> ## Documentation Index
> Fetch the complete documentation index at: https://docs.soloent.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Markdown 문법

> 표준 Markdown에서의 텍스트, 제목, 스타일링

## 제목

섹션 헤더에 가장 적합합니다.

```md theme={null}
## 제목
```

### 부제목

하위 섹션 헤더에 가장 적합합니다.

```md theme={null}
### 부제목
```

<Tip>
  각 **제목**과 **부제목**은 앵커를 생성하고 오른쪽 목차에도 나타납니다.
</Tip>

## 텍스트 서식

대부분의 Markdown 서식을 지원합니다. 텍스트 주위에 `**`, `_` 또는 `~`를 추가하여 서식을 지정하세요.

| 스타일 | 작성 방법    | 결과      |
| --- | -------- | ------- |
| 굵게  | `**굵게**` | **굵게**  |
| 기울임 | `_기울임_`  | *기울임*   |
| 취소선 | `~취소선~`  | ~~취소선~~ |

이들을 결합할 수 있습니다. 예를 들어, `**_굵게 및 기울임_**`이라고 쓰면 ***굵게 및 기울임*** 텍스트가 됩니다.

위첨자와 아래첨자 텍스트를 쓰려면 HTML을 사용해야 합니다. 즉, 텍스트 주위에 `<sup>` 또는 `<sub>`를 추가합니다.

| 텍스트 크기 | 작성 방법             | 결과              |
| ------ | ----------------- | --------------- |
| 위첨자    | `<sup>위첨자</sup>`  | <sup>위첨자</sup>  |
| 아래첨자   | `<sub>아래첨자</sub>` | <sub>아래첨자</sub> |

## 페이지 링크

텍스트를 `[]()`로 감싸서 링크를 추가할 수 있습니다. `[Google로 링크](https://google.com)`라고 쓰면 [Google로 링크](https://google.com)가 됩니다.

문서 내 페이지 링크는 루트 상대 경로여야 합니다. 기본적으로 전체 폴더 경로를 포함해야 합니다. 예를 들어, `[텍스트로 링크](/writing-content/text)`는 구성 요소 섹션의 "텍스트" 페이지로 링크됩니다.

`[텍스트로 링크](../text)`와 같은 상대 링크는 쉽게 최적화할 수 없어 열리는 속도가 느립니다.

## 인용문

### 한 줄

인용문을 만들려면 단락 앞에 `>`를 추가하세요.

> Dorothy followed her through many of the beautiful rooms in her castle.

```md theme={null}
> Dorothy followed her through many of the beautiful rooms in her castle.
```

### 여러 줄

> Dorothy followed her through many of the beautiful rooms in her castle.
>
> The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.

```md theme={null}
> Dorothy followed her through many of the beautiful rooms in her castle.
>
> The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.
```

### LaTeX

Mintlify는 Latex 구성 요소를 통해 [LaTeX](https://www.latex-project.org)를 지원합니다.

<Latex>8 x (vk x H1 - H2) = (0,1)</Latex>

```md theme={null}
<Latex>8 x (vk x H1 - H2) = (0,1)</Latex>
```
