abenori / jlreq

Other
125 stars 18 forks source link

同行見出し後に箇条書き前の空きが入らない #121

Closed Physics-Ludus closed 1 year ago

Physics-Ludus commented 1 year ago

\section 直下に同行見出しを置き,その下に箇条書きを入れると箇条書き前のスペースがなくなります.

\section と同行見出しの間に1文字でも入っていれば箇条書き前に適切にスペースが入ることは確認しました. 同様の事例を\subsectionでも確認しました.

\documentclass{jlreq}

\NewRuninHeading{dougyou}{4}{}
\jlreqsetup{itemization_beforeafter_space={50pt}}

\begin{document}

\section{別行見出し}
\dougyou{同行見出し}
本文
\begin{enumerate}
    \item 箇条書き
\end{enumerate}
本文

\end{document}
abenori commented 1 year ago

ありがとうございます.\@startsectionの実装を真似ました.これで大丈夫かな?c24bb77

Physics-Ludus commented 1 year ago

スペース入ってました.ありがとうございます.