简单的乳胶书模板

简单的乳胶书模板

我需要写一本书,其尺寸(修剪后)为 234mm 高 x 156mm 宽。文本块应与修剪尺寸成比例,并位于页面中央。要使用的字体是 Utopia,表格上的数字使用常规内衬数字,其他地方的数字使用旧式数字。正文字体为 Utopia 10pt,章节(标题)字体为 Utopia 17pt,标题(副标题)字体为 Utopia 13pt。每种字体大小的行距/行高应该是合适的配对,例如 10pt/13pt。章节和标题没有编号。章节始终在右页。章节开始的每一页、目录、图表列表和其他前言都没有页码。在正文的其他页面中,页码在页眉处(页眉空间应在文本块内)。没有边距注释,只有在需要时才有脚注。脚注应为 Utopia 8pt,带有上标脚注标记,缩进。仅供参考,本书不会包含任何数学方程式,只有文本、一些图片和表格。

我是 TeX 和 LaTeX 的新手,但想尝试一下书中的课程。我看过 Memoir,它的手册对我来说已经够吓人的了。要实现上述目标,哪个课程应该更简单?您有什么代码可以推荐吗?

打算实现这样的页面布局:

  • 右手带章:

    在此处输入图片描述

  • 左手:

    在此处输入图片描述

感谢任何帮助/意见。

答案1

您应该始终在开始的地方提供一些代码;写下您的要求并没有真正的帮助。另一方面,原始 LaTeX 对多作者书籍的支持不佳。这是您主要基于包的起点。当您有作者时,您必须在命令之前titlesec使用命令,否则对于诸如.\chapauthor{name}\chapter\chapauthor{}\tableofcontents

\documentclass[openright,twoside,10pt]{book}

\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}

\usepackage{geometry}
\geometry{%
  textwidth  = 156mm ,
  textheight = 234mm ,
  a4paper            ,
  includehead        ,
  hcentering         ,
  vcentering
}

\usepackage[osf,proportional,space]{erewhon}
\usepackage[rigidchapters,pagestyles]{titlesec}
\usepackage{titletoc,lipsum,multicol}

\makeatletter
\newcommand\chap@author{}
\newcommand\chapauthor[1]{%
  \cleardoublepage
  \gdef\chap@author{#1}%
}
\def\chap@author{}

\titleformat{\chapter}[hang]
  {\LARGE\bfseries\filright}
  {\thechapter}
  {0pt}
  {%
    \ifx\chap@author\@empty\else
      \setlength{\unitlength}{1mm}%
      \begin{picture}(0,0)
        \put(0,-17){\makebox(0,0)[l]{\Large\mdseries\itshape \chap@author}}
      \end{picture}%
    \fi
  }
  [%
    \thispagestyle{empty}%
    \ifx\chap@author\@empty\else
      \addtocontents{toc}{%
        \vspace{-5pt}%
        \protect\contentsline{chapter}{\mdseries\itshape \chap@author}{}{}%
      }%
      \addtocontents{toc}{\addvspace{5pt}}%
    \fi
    \startcontents
  ]

\titleformat{\section}[hang]
  {\Large\bfseries\filright}
  {\thesection}
  {0pt}
  {}

\titlespacing*{\chapter}{0pt}{0pt}{3cm}
\titlespacing*{\section}{0pt}{.75pc}{.5pc}

\newpagestyle{main}{%
  \sethead[%
    \ifx\chap@author\@empty
      {\makebox[1.5pc][l]{\thepage}{\lsstyle\MakeUppercase\chaptertitle}}%
    \else
      {\makebox[1.5pc][l]{\thepage}{\lsstyle\MakeUppercase\chap@author}}%
    \fi]
    [][]
    {}{}{}
}

\renewcommand\@makefntext[1]{%
  \parindent 1em%
  \noindent
  \hb@[email protected]{\hss\@makefnmark\hspace{0.5em}}#1}

\let\footnoterule\relax

\makeatother

\usepackage[activate=true]{microtype}

\pagestyle{main}

\setcounter{secnumdepth}{-1}

\raggedbottom

\begin{document}

\chapauthor{Christoper S. Chapman}
\chapter{Controlling Strategy}

\begin{multicols}{2}[\subsubsection*{Contents of this chapter}]
   \printcontents{}{1}{\setcounter{tocdepth}{2}}
\end{multicols}

Norman 1965, Kaplan 1987 \\\lipsum[1]

Footnotes look like\footnote{Sed ut perspiciatis, unde omnis iste
  natus error si.  Sed ut perspiciatis, unde omnis iste natus error,
  si.  Sed ut perspiciatis, unde omnis iste natus error si.}
and\footnote{Sed ut perspiciatis, unde omnis iste natus error si.  Sed
  ut perspiciatis, unde omnis iste natus error, si.  Sed ut
  perspiciatis, unde omnis iste natus error si.}.

\section{The relationship between management control systems and
  strategy}
\lipsum[1]

\section{Any Relationship between management control systems and
  strategy?}
\lipsum[1]

\section{No Relationship between management control systems and
  strategy!}
\lipsum

\chapauthor{}
\tableofcontents

\end{document}

在此处输入图片描述

相关内容