展示精美的款式组合

展示精美的款式组合

处理各种书籍时,我经常需要灵感一套连贯、合乎逻辑且美观的分段样式。众所周知的例子包括爱德华·塔夫特以及罗伯特·布林赫斯特的印刷风格的要素

我恳请您展示您的示例 — 如果示例包含 LaTeX 源代码就更好了。如果您引用了特定的作者或出版物,最好附上一张图片。

上述示例通常仅限于章节标题、章节和小节。有时,我需要一组更深入的样式 — 章节标题、章节、小节、小小节、段落、小段落等。因此,非常需要具有更多深度的样式集。

答案1

请参阅memoir手册(尝试texdoc memoirtexdoc memman)第 6.5 和 6.6 节,其中展示了各种不同样式的章节和较低级别的标题以及生成它们的代码(但对于某些章节样式的代码,您必须查看实际的类文件memoir)。请注意,几种章节样式是类不可或缺的一部分memoir

答案2

我绝对不会声称它是“美丽的”,但我想通过发布我自己的分段风格来鼓励其他答案。

这是我对于未编号部分(非常)紧凑风格的尝试:

\documentclass{scrartcl}
\usepackage{xcolor}

% Unnumbered titles.
\setcounter{secnumdepth}{-\maxdimen}

% Playing with the fonts
\setkomafont{subsubsection}{\normalfont\bfseries}
\setkomafont{paragraph}{\normalfont}
\setkomafont{subparagraph}{\normalfont\itshape}

% Playing with the spacing
\RedeclareSectionCommands[beforeskip=-.35\baselineskip, afterskip=.15\baselineskip]{section, subsection, subsubsection, paragraph, subparagraph}
\RedeclareSectionCommands[afterskip=-.5\baselineskip]{paragraph, subparagraph}
\addtokomafont{section}{\centering}

% Color from https://bedienhaptik.de/latex-template/
\definecolor[named]{myColorMainA}{RGB}{0,26,153}

% Coloring the titles
\addtokomafont{section}{\color{myColorMainA}}
\addtokomafont{subsection}{\color{myColorMainA}}
\addtokomafont{subsubsection}{\color{myColorMainA}}
\addtokomafont{paragraph}{\color{myColorMainA}}
\addtokomafont{subparagraph}{\color{myColorMainA}}

\begin{document}
    \section{Level 1}
    The quick brown fox jumps over the lazy dog.
    \subsection{Level 2}
    The quick brown fox jumps over the lazy dog.
    \subsubsection{Level 3}
    The quick brown fox jumps over the lazy dog.
    \paragraph{Level 4}
    The quick brown fox jumps over the lazy dog.
    \subparagraph{Level 5}
    The quick brown fox jumps over the lazy dog.
\end{document}

在此处输入图片描述

相关内容