回想録の章の先頭と末尾の空白を削除します

回想録の章の先頭と末尾の空白を削除します

私は Latex の初心者なので、簡単な質問でしたら申し訳ありません。章のタイトルを囲む空白の量を減らしたいのですが、章のセクションは次のとおりです (少し切り詰められていることに注意してください)。

\documentclass[twoside,9pt]{memoir}
\usepackage[compact]{titlesec}
\chapterstyle{southall}
\begin{document}
\frontmatter
\chapter{Marseilles--The Arrival.}

On the 24th of February, 1815, the look-out at Notre-Dame de la Garde
signalled the three-master, the Pharaon from Smyrna, Trieste, and
Naples.

生成されると次のようになります。

空白

さまざまなオプションを試してみましたが、どれも無駄でした。何か提案はありますか?

答え1

方法は次のとおりです。スタイルのコードsouthall(セクションB.1.4)をコピーしました。マニュアルmemoir) を変更し、新しい名前を付けました。 適合するように調整します。 パッケージは、showframeタイトルの位置をより適切に示すためにのみ使用されます。

memoirと同様の機能を提供するtitlesecため、通常は一緒に使用されません。章のスタイルの詳細については、のセクション6.5.1を参照してください。マニュアルmemoir

\documentclass[twoside,9pt]{memoir}
\usepackage{showframe} % just for the example

\makechapterstyle{southall-mod}{%
  \chapterstyle{default}
  \setlength{\afterchapskip}{2\baselineskip} %%%%%%%%% MOD: WAS 5\baselineskip
  \setlength{\beforechapskip}{18pt}%    \headindent %%%%%%% MOD: WAS 36pt
  \setlength{\midchapskip}{\textwidth}% \rightblock
  \addtolength{\midchapskip}{-\beforechapskip}
  \renewcommand*{\chapterheadstart}{\vspace*{0pt}} %%%% MOD: WAS 2\baselineskip
%%%  \renewcommand*{\chaptitlefont}{\huge\rmfamily\raggedright}
  \renewcommand*{\chaptitlefont}{\huge\rmfamily\memRTLraggedright}
  \renewcommand*{\chapnumfont}{\chaptitlefont}
  \renewcommand*{\printchaptername}{}
  \renewcommand*{\chapternamenum}{}
  \renewcommand*{\afterchapternum}{}
  \renewcommand*{\printchapternum}{%
    \begin{minipage}[t][\baselineskip][b]{\beforechapskip}
      {\vspace{0pt}\chapnumfont%%%\figureversion{lining}
                   \thechapter}
    \end{minipage}}
  \renewcommand*{\printchaptertitle}[1]{%
    \hfill\begin{minipage}[t]{\midchapskip}
      {\vspace{0pt}\chaptitlefont ##1\par}\end{minipage}}
  \renewcommand*{\afterchaptertitle}{%
    \par\vspace{\baselineskip}%
    \hrulefill \par\nobreak\noindent \vskip \afterchapskip}}



\chapterstyle{southall-mod}

\begin{document}

\chapter{Marseilles--The Arrival.}

On the 24th of February, 1815, the look-out at Notre-Dame de la Garde
signalled the three-master, the Pharaon from Smyrna, Trieste, and
Naples.

\end{document}

ここに画像の説明を入力してください

関連情報