未翻訳
このページはまだ翻訳されていません。原文の内容が表示されています。
title
要素関数要素関数要素関数はset
ルールやshow
ルールでカスタマイズできます。
要素関数
要素関数は
set
ルールやshow
ルールでカスタマイズできます。A document title.
This should be used to display the main title of the whole document and should occur only once per document. In contrast, level 1 headings are intended to be used for the top-level sections of the document.
Note that additional frontmatter (like an author list) that should appear together with the title does not belong in its body.
In HTML export, this shows as a h1
element while level 1 headings show
as h2
elements.
Example
#set document(
title: [Interstellar Mail Delivery]
)
#title()
= Introduction
In recent years, ...

引数引数引数は関数への入力値です。関数名の後に括弧で囲んで指定します。
引数
引数は関数への入力値です。関数名の後に括弧で囲んで指定します。
body
The content of the title.
When omitted (or auto
), this will default to document.title
. In
this case, a document title must have been previously set with
set document(title: [..])
.
デフォルト値: auto
例を表示
#set document(title: "Course ABC, Homework 1")
#title[Homework 1]
...
