答案1
您应该查看geometry
、titlesec
和等软件包fancyhdr
。也许,在创建真正的模板之前,您应该使用常规 tex 文件进行测试。至于字体,您可能希望使用 XeLaTeX,它允许您使用系统上安装的任何字体。
也许可以从以下几点开始:
\documentclass{book}
\usepackage{lipsum}
\usepackage[headheight=18pt,
inner margin=35mm,
outer margin=40mm]{geometry}
\newcommand{\thehook}{%
\hspace{.5em}%
\setlength{\unitlength}{1em}%
\raisebox{-.5em}{\begin{picture}(.4,1.7)
\put(0,0){\line(1,0){.2}}
\put(.2,0){\line(0,1){1.7}}
\put(.2,1.7){\line(1,0){.2}}
\end{picture}}%
\hspace{.5em}%
}
\usepackage{fancyhdr}
\fancyhead{}
\fancyfoot{}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\fancyhead[RO]{\sffamily\rightmark\thehook\textbf{\thepage}}
\fancyhead[LE]{\sffamily\textbf{\thepage}\thehook\rightmark}
\fancypagestyle{plain}{%
\fancyhf{}
}
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{\markright{#1}}
\renewcommand{\sectionmark}[1]{}
\renewcommand{\subsectionmark}[1]{}
\usepackage{titlesec}
\titleformat{\chapter}[hang]{\Huge\sffamily}{\bfseries\thechapter}{0pt}{\thicklines\thehook}[\vspace{2em}]
\begin{document}
\chapter{Tools of the Trade}
\lipsum[1-5]
\end{document}