我正在和一个非常糟糕的硕士论文模板作斗争。一些聪明的 _ss 设计了一些功能,如果不进行手动更正,这些功能在 MS Word 中是无法实现的,所以我试图让它在 LaTeX 中工作以破解它。
章节格式 - Times New Roman,14pt,红色(包括章节号),大写,偶数页右侧带线,奇数页左侧带线,并带有章节号。
章节格式为 Times New Roman,12pt,偶数页右侧有线,奇数页左侧有线,并标有章节编号。
与小节相同。
页眉和页脚有彩色线,奇数页/偶数页的页码不同。
我以前用过 LaTeX,对 LaTeX 有一定的了解,但这完全超出了我的能力范围。有人能帮我解释一下这些破坏因素的定义吗?
答案1
以下是使用分段命令布局的方法titlesec
:
\documentclass[a4paper]{report}% http://ctan.org/pkg/amsproc
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[x11names,]{xcolor}
\usepackage{fourier}
\usepackage{microtype}
\SetTracking[no ligatures={f}]{encoding=*}{80}
\usepackage[strict]{changepage}%
\usepackage{lipsum}
\usepackage[explicit]{titlesec}%
\titleformat{\chapter}[hang]
{\bfseries\fontsize{14pt}{14pt}\selectfont\color{IndianRed3}\lsstyle}
{\checkoddpage\ifoddpage\llap{\makebox[\dimexpr\marginparsep+\marginparwidth\relax][l]{\rule[-1.25ex]{\marginparwidth}{0.5ex}\llap{\thechapter}}}\else\thechapter\enspace \fi}
{0pt}
{\MakeUppercase{#1}\checkoddpage\ifoddpage\else\hfill\rlap{\makebox[\dimexpr\textwidth + \marginparsep][l]{\hspace{\marginparsep}\rlap{\rule[-1.25ex]{\marginparwidth}{0.5ex}}\thechapter}}\fi}%\titlerule[1.5pt]
\titlespacing*{\chapter}{0pt}{2ex}{1ex}
%
\titleformat{\section}
{\bfseries\large}
{\checkoddpage\ifoddpage\llap{\makebox[\dimexpr\marginparsep+\marginparwidth\relax][l]{\rule[-1.25ex]{\marginparwidth}{0.5ex}\llap{\thesection}}}\else\thesection\enspace \fi}
{0pt}
{#1\checkoddpage\ifoddpage\else\hfill\rlap{\makebox[\dimexpr\textwidth + \marginparsep][l]{\hspace{\marginparsep}\rlap{\smash{\rule[-1.25ex]{\marginparwidth}{0.5ex}}}\thesection}}\fi}%\titlerule[1.5pt]
\titlespacing*{\section}{0pt}{1ex}{0.5ex}
\titleformat{\subsection}
{\bfseries}
{\checkoddpage\ifoddpage\llap{\makebox[\dimexpr\marginparsep+\marginparwidth\relax][l]{\rule[-1.25ex]{\marginparwidth}{0.5ex}\llap{\thesubsection}}}\else\thesubsection\enspace \fi}
{0pt}
{#1\checkoddpage\ifoddpage\else\hfill\rlap{\makebox[\dimexpr\textwidth + \marginparsep][l]{\hspace{\marginparsep}\rlap{\smash{\rule[-1.25ex]{\marginparwidth}{0.5ex}}}\thesubsection}}\fi} \titlespacing*{\subsection}{0pt}{1ex}{0.5ex}
\begin{document}
\chapter{Introduction}
\lipsum[1]
\section{Motivation}
\lipsum[2]
\subsection{A First Motivation}
\lipsum[3]
\newpage
\chapter{Introduction}
\lipsum[1]
\section{Motivation}
\lipsum[2]
\subsection{A First Motivation}
\lipsum[3]
\end{document}