0
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?

jlreq で柱を左右に出す方法

Last updated at Posted at 2025-03-12

jlreq で headings を設定すると,柱が中央に出力されます.

\pagestyle{headings}

そこで以下のように,ModifyPageStyle を使って headings を書き換えることで柱を左右に出すことができます.

\ModifyPageStyle{headings}{
    nombre_position=bottom-right,
    running_head_position=top-right
}
\pagestyle{headings}

もしj(s)bookみたいにしたいなら,

\ModifyPageStyle{headings}{
    odd_head_format={\underline{\makebox[\jlreqyokoheadlength]{#1}}},
    even_head_format={\underline{\makebox[\jlreqyokoheadlength]{#1}}},
    nombre_position=top-right,
    running_head_position=top-left
}
\pagestyle{headings}

とするといいでしょう.

0
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
0
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?