% tenure.tex: top level latex file
\documentclass[11pt]{article}
\usepackage{geometry}
% pages: 5.25 by 8 in. Top margin: 1 in, bottom margin: 0.625 in
% odd page: margins: left 0.875, right 0.625 in,
% even page: margins reversed.
% I like the apperance when bottom margin = odd page right margin
\geometry{paperwidth=5.25in,paperheight=8in,
  left=0.875in,right=0.625in,top=1in,bottom=0.625in,twoside}
\usepackage{times} % default: times 11pt, \baselinestretch=1.06
\usepackage{fancyhdr} % headers
\pagestyle{fancy} % style for headers
\usepackage{pifont} % for the copyright symbol
\headheight 0.25in % height of header
\headsep 0.25in % dist between top of text and bottom of header
\parskip 0in
\parindent 0.25in % = 6.35mm
\newcommand{\str}{\rule{0pt}{16pt}} % strut used in toc
%%% header stuff
\newcommand{\currpage}{\footnotesize\thepage} % use in headers
\fancyhead{} % clear header fields, required
\fancyfoot{} % clear footer fields, required
\fancyhead[RO,LE]{\currpage} % Odd page, Right side; Even page, left side
\newcommand{\lo}{\footnotesize{}The Tenure Trap}
\fancyhead[LO]{\lo} % Odd page, Left side
\newcommand{\re}{\footnotesize{}Neal R. Wagner}
\fancyhead[RE]{\footnotesize\re} % Even Page, Right side
\renewcommand\headrulewidth{0pt} % for no rule line under header

\newcommand{\chapstart}[3]{\newpage % at start of chapter
  \thispagestyle{empty} % no headers or footers
  \begin{flushright} % align to right side
    \vspace*{1in}
    {\Largebold Chapter #1} % #1 means use first argument
    \vspace{0.5in}
  \end{flushright}
  \noindent
  {\bf{}[#2, #3 pt, \baselinestretch{} stretch]}
  \newline\noindent
}

% fonts
\newcommand{\Hugebolditalic}{\fontfamily{phv}\fontseries{b}\fontshape{it}%
\fontsize{40}{45pt}\selectfont} % Book title
\newcommand{\Largebold}{\fontfamily{phv}\fontseries{b}\fontshape{n}%
\fontsize{23}{26pt}\selectfont} % for chap head and for author name
\newcommand{\mytimes}{\fontfamily{ptm}\fontseries{m}\fontshape{n}%
\fontsize{11.6}{13pt}\selectfont} % in chapter 1
\newcommand{\smalltimes}{\fontfamily{ptm}\fontseries{m}\fontshape{n}%
\fontsize{10.6}{13pt}\selectfont} % in chapter 2
\newcommand{\ncsbk}{\fontfamily{pnc}\fontseries{m}\fontshape{n}%
\fontsize{11}{13pt}\selectfont} % in chapter 3
\newcommand{\pal}{\fontfamily{ppl}\fontseries{m}\fontshape{n}%
  \fontsize{11}{13pt}\selectfont} % in chapter 4

\renewcommand{\baselinestretch}{1.06} % best way to stretch

\begin{document}
\sloppy % ignore problems with line overflow / underflow
%%%%% Start, title page, copyright %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\setcounter{page}{1}
\pagenumbering{roman}
\input{tenure.title} % title and copyright
%%%%% Table of Contents %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newpage
\input{tenure.toc} % table of contents
%%%%% Blank page %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% page 1 must start on the right hand side
\newpage
\thispagestyle{empty}
\str % need someting to get blank page
%%%%% Chapter 1; Times Roman font, 11 pt %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newpage
\label{chap1}
\setcounter{page}{1}
\pagenumbering{arabic}
{\mytimes
\chapstart{1}{Times Roman}{11.6}
\input{tenure.c1}
} % \mytimes
%%%%% Chapter 2: Times Roman font, 10.6 pt, same linespacing %%%%%%%%%%
\newpage
\label{chap2}
\renewcommand{\baselinestretch}{1.06} % best way to stretch
\renewcommand\headrulewidth{0.6pt} % put rule line under header
\renewcommand{\re}{\smalltimes\footnotesize{}WAGNER, N. R.} % new header
\renewcommand{\lo}{\smalltimes\footnotesize{}THE TENURE TRAP} % ditto
{\smalltimes
\chapstart{2}{Times Roman}{10.6}
\input{tenure.c1}
} % end \smalltimes
%%%%% Chapter 3: New Cent Sbk font, 11 pt, wider linespacing %%%%%%%%%%
\newpage
\label{chap3}
\renewcommand{\baselinestretch}{1.3} % best way to stretch
\renewcommand{\re}{\ncsbk\footnotesize{}N. R. Wagner} % new header
\renewcommand{\lo}{\ncsbk\footnotesize{}The Tenure Trap} % ditto
{\ncsbk % NewCenturySchlbk
\chapstart{3}{New Century Schoolbook}{11}
\input{tenure.c1}
} % end \new cent schoolbook
%%%%% Chapter 4: Palatino font, 11 pt, wider linespacing %%%%%%%%%%%%%%
\newpage
\label{chap4}
\renewcommand{\baselinestretch}{1.15} % best way to stretch
\renewcommand{\re}{\pal\footnotesize{}N. R. Wagner} % new header
\renewcommand{\lo}{\pal\footnotesize{}The Tenure Trap} % ditto
{\pal % Palatino
\chapstart{4}{Palatino}{11}
\input{tenure.c1}
} % end palatino
\end{document} % that's all folks!