ページの下部にタイトルが表示されないようにする(場合によっては)

ページの下部にタイトルが表示されないようにする(場合によっては)

散文と詩の両方が収録された本があります。詩がページの下部から始まるのは望ましくありません。

そのために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}

関連情報