2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

[LaTeX] jlreq (book)の「付録 A」を「Appendix A」に変更する

Posted at

\documentclass[book]{jlreq}としてjlreqで文章を書いている.
文書中に\appendixを書いておくと,それ以降の章見出しに「付録」がついて「付録 A ~」のような形になる.

この章見出しのラベル(付録 A)を変更したい.
そのためには,プリアンブルに次のように書けばよい:

\jlreqsetup{
    appendix_heading = {
      chapter = {label_format = {Appendix~\thechapter .}}
    },
}

これを追加すると,\appendix以降は「Appendix A. ~」という形になる.

他のドキュメントクラスとは異なる設定方法だが,調べても記事などを見つけられず苦労したので,メモしておく.
ちなみに付録ではない普通の章見出しのラベル設定方法

\ModifyHeading{chapter}{label_format = {\thechapter .}}

とも異なる設定方法なので,注意.

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?