使用 /geometry 包布局书

使用 /geometry 包布局书

我需要帮助来创建书籍布局。这对我来说非常困难,因为我从未经历过这种情况,所以我问是否有人可以帮助我。我读到 /geometry 用于获取所需的页边距,但我不知道如何操作。

我想制作一本 a5 书:

页面大小:高 21 厘米 - 宽 15 厘米 正文外边距:左边距 2.5 厘米 - 右边距 2.5 厘米 页面下边距:2.5 厘米 页面上边距:2.5 厘米

章节号与章节名称之间的上边距为2.0厘米,章节号与章节名称与实际文本之间的间距为0.5厘米。

正文高16.0厘米,宽10厘米。

问题:我应该给出什么命令才能在/geometry 中获得这些参数?

如果你能帮助我,谢谢。

答案1

您可以尝试使用memoir具有内置功能以更改布局的类,而不是book

% layoutprob.tex SE 524558 layout for an A5 book
\documentclass[a5paper]{memoir} % sets the page size to a5

\settypeblocksize{21cm}{15cm}{*} % the body of the text
\setlrmargins{2.5cm}{*}{*}       % the left and right margins equal
\setulmargins{2.5cm}{*}{*}       % set the upper and lower margins equal
% other possible layout specifications
\checkandfixthelayout            % apply the layout specifications

%%% change the chapter layout

\begin{document}
% ...
\end{document}

memoir还具有一套全面的实用程序,可用于更改文档的许多其他方面,包括 s 的设置\chapter。(我不确定您想要什么)。请阅读略长但全面的文档(> texdoc memoir)。

答案2

对于页面布局,如下:序言必须包含以下行:

\usepackage[papersize={15cm,21cm}, margin=2.5cm]{geometry}

或者

\usepackage[a5paper, margin=2.5cm]{geometry}

该包将在此基础上计算主体的宽度和高度。

章节标题布局不是几何学的工作,而是实例titlesec 。但是你说的“章节号和章节名称(实际上是标题!)之间的空格与实际文本”是什么意思?章节号和章节标题不会在同一行上。

相关内容