Eu sou muito novo no Latex, então peço desculpas se esta for uma pergunta simples. Gostaria de reduzir a quantidade de espaços em branco que envolve o título de um capítulo. Aqui está a seção do capítulo (observe que está um pouco truncada):
\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.
Quando é gerado fica assim:
Eu tentei várias opções para reduzir tudo sem sucesso. Você pode oferecer alguma sugestão?
Responder1
Aqui está uma maneira: copiei o código do southall
estilo (seção B.1.4 doo memoir
manual) e modificou-o, dando-lhe um novo nome. Ajuste para se adequar. O pacote showframe
é utilizado apenas para mostrar melhor o posicionamento do título.
Observe que memoir
fornece funções semelhantes a titlesec
, portanto, normalmente não são usadas juntas. Mais informações sobre estilos de capítulo estão na seção 6.5.1 doo memoir
manual.
\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}