散文と詩の両方が収録された本があります。詩がページの下部から始まるのは望ましくありません。
そのためにnobottomtitles
のオプションtitlesec
があります。ただし、これを散文セクションに適用したくありません。
解決策は次のいずれかになります。
nobottomtitles
環境にのみ適用します\raggedbottom
。- オン/オフを切り替えられるようにします
nobottomtitles
。(ドキュメントの途中でパッケージ オプションを変更できますか?) nobottomtitles
を特定のセクション レベル ( など) にのみ適用しますsubsubsection
。
作業例:
\documentclass[12pt]{book}
\usepackage{verse}
\usepackage[nobottomtitles]{titlesec}
\usepackage{lipsum}
\setlength{\parskip}{0pt}
\newcommand{\poem}{%
\begin{verse}
First line of poem\\
Second line of poem\\
Third line of poem\\
Fourth line of poem
\end{verse}
}
\begin{document}
% Flush bottom for prose
\flushbottom
\section{Prose section}
\lipsum
\subsection{Prose subsection}
Can be at bottom of page
\subsection{Prose subsection}
Can be at bottom of page \lipsum
% Ragged bottom for poetry
\raggedbottom
\subsection{Poetry subsection}
\begin{verse}
Make\\
this\\
one\\
six\\
lines\\
long
\end{verse}
\subsection{Poetry subsection}
\poem
\poem
\poem
\subsection{Poetry subsection}
\poem
\poem
\poem
\end{document}