遵循本书布局的模板

遵循本书布局的模板

是否存在如下格式的模板:

在此处输入图片描述

答案1

我不知道其他地方是否存在模板,但您可以轻松提供所需的设置:

\documentclass[14pt,openany]{memoir}
\usepackage[a6paper,textheight=19\baselineskip,footskip=40pt]{geometry}
\usepackage[pagestyles]{titlesec}
\usepackage{xcolor}
\usepackage{graphicx}
\usepackage{lipsum}% kust to generate text for the example

\definecolor{myorange}{RGB}{193,158,88}
\definecolor{pagecolor}{RGB}{251,234,214}

\titleformat{\chapter}
  {\normalfont\Large\itshape\bfseries\filcenter\color{myorange}}{}{0em}{}

\newpagestyle{mystyle}{
  \sethead{}{}{}
  \setfoot{}{\thepage}{}
}
\pagestyle{mystyle}

\linespread{2}
\raggedright
\pagecolor{pagecolor}

\begin{document}

\chapter{Cookies}
\begin{figure*}
\centering
\includegraphics[width=.7\textwidth]{taf}
\end{figure*}
\lipsum[1-6]

\end{document}

在此处输入图片描述

关于使用的课程和包的备注:

  • memoir:只是因为它可以14pt轻松提供字体大小。

  • titlesec:更改章节标题的格式。我使用该pagestyles选项轻松定义页眉/页脚。titlesec在这种情况下使用(带memoir)不会产生任何不良后果。

  • geometry: 页面布局。

  • xcolor:章节标题和页面背景的颜色设置。

  • graphicx:图像包含。

相关内容