如何制作此书的版面

如何制作此书的版面

请问如何制作本书的设计和布局:

章节、子章节、页面顶部、页脚的格式和颜色...

在此处输入图片描述

答案1

没有特定的例子可以参考。你必须自己制作才能看起来像给出的图片一样。

我建议你:

  1. 了解书页的长度、宽度等所有细节。
  2. 使用memoir类。
  3. 对您的内容进行粗略的勾勒。
  4. 然后手动更改设计titlesecfancyhdr使其看起来像给定的图片。

答案2

经过一番研究,以下是我所能做的

\documentclass[12pt,a4paper]{book} 
\usepackage[top=2cm,bottom=2cm,left=2cm,right=2cm,headsep=10pt,a4paper]{geometry}
\usepackage[english]{babel} 
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}

\usepackage{lipsum} 

\usepackage{xcolor} 
\definecolor{rufous}{rgb}{0.66, 0.11, 0.03}

%-----------------------------------------------------

\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\chaptermark}[1] 
{\markboth{\sffamily\normalsize\bfseries\textcolor{rufous}{\chaptername\ 
\thechapter.}\ #1}{}} 
\renewcommand{\sectionmark}[1] 
{\markright{\sffamily\normalsize\thesection\hspace{5pt}#1}{}}
 \fancyhf{} \fancyhead[LE,RO]{\sffamily\normalsize\thepage} 
\fancyhead[LO]{\rightmark} 
\fancyhead[RE]{\leftmark} 
\renewcommand{\headrulewidth}{0.5pt} 
\renewcommand{\footrulewidth}{0pt}

\makeatletter
\renewcommand{\cleardoublepage}{
\clearpage\ifodd\c@page\else
\hbox{}
\vspace*{\fill}
\thispagestyle{empty}
\newpage
\fi}

%-----------------------------------------------------

\makeatletter
\renewcommand{\@seccntformat}[1]{\textcolor{rufous}{\csname 
the#1\endcsname}\hspace{0.5em}}

\renewcommand{\section}{\@startsection{section}{1}{\z@}
{-4ex \@plus -1ex \@minus -.4ex}{1.3ex \@plus.2ex } 
{\normalfont\large\sffamily\bfseries}}

 \renewcommand{\subsection}{\@startsection {subsection}{2}{\z@}
 {-4ex \@plus -0.1ex \@minus -.4ex}
 {1.5ex \@plus.2ex }{\normalfont\sffamily\bfseries}}

 \renewcommand{\subsubsection}{\@startsection {subsubsection}{3}{\z@}
 {-2ex \@plus -0.1ex \@minus -.2ex}
 {.2ex \@plus.2ex }
 {\normalfont\small\sffamily\bfseries}}  

\renewcommand\paragraph{\@startsection{paragraph}{4}{\z@}
{-2ex \@plus-.2ex \@minus .2ex}
{.1ex}
{\normalfont\small\sffamily\bfseries}}

%-----------------------------------------------------

\begin{document}

\chapter{Cinématique}

\section{Introduction}

\lipsum[1-5]

\section{Référentiel}

\subsection{Lorem ipsum}

\lipsum[5]

\subsubsection{Lorem ipsum}

\lipsum[1-10]

\end{document}

谢谢你们。

在此处输入图片描述

答案3

对于每个页码,我注意到偶数页的页码在左边,奇数页的页码在右边。

你可以使用该fancyhdr包并将其放在序言中

\usepackage{fancyhdr}
\fanypagestyle{newpagestyle}{
\fancyhead[LE, RO]{\thepage}}
\pagestyle{newpagestyle}

这应该按该顺序设置页码。

答案4

对于着色部分编号,请点击此处:彩色部分编号

要操作页脚或页眉,只需使用该fancyhdr包。这是一个非常有用的工具。

\lfoot{Body}左页脚、\rfoot{Body}右页脚、\cfoot{Body}中间页脚。在序言中使用此方法时,它适用于所有页面,但在文档中使用此方法时,它适用于特定页面。

对于类似环境的设置,请使用fancypagestyle命令。

例子:

\fancypagestyle{new}{
\fancyfoot[Option]{Body}}
\pagestyle{new}

选项可以是 LE(左偶数)、RO(右奇数)、CO(中心奇数)等。

操作该fancyhdr包非常容易。

相关内容