Estou lutando com um modelo de tese de mestrado horrível. Alguns _ss inteligentes projetaram alguns recursos que não poderiam ser feitos no MS Word sem correção manual, então estou tentando fazer com que funcione no LaTeX para hackeá-lo.
Aqui estão alguns obstáculos ao negócio:
O formato do capítulo - Times New Roman, 14pt, cor vermelha (incl. número do capítulo), maiúsculo, com linha à direita para página par e à esquerda para página ímpar e com o número do capítulo.
O formato da seção - Times New Roman, 12pt, com linha à direita para página par e à esquerda para página ímpar e com o número da seção.
O mesmo com a subseção.
O cabeçalho e o rodapé possuem linhas coloridas com numeração de página diferente para páginas pares/ímpares.
Já trabalhei com LaTeX no passado e tenho um conhecimento decente de LaTeX, mas isso está totalmente fora das minhas habilidades. Alguém poderia, por favor, me ajudar com as definições desses infratores?
Responder1
Aqui está uma forma de layout dos comandos de seccionamento com 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}