%
% Transportation Research Board conference paper template
% version 1.1
% 
% David R. Pritchard, http://davidpritchard.org
%   1.0 - Mar. 2009
%   1.1 - Sep. 2011, fixes for captions



% PAGE LAYOUT
%------------------------------------------

% Custom paper settings...
\documentclass[titlepage,oneside,12pt]{article}

\oddsidemargin 0.0in
\topmargin -0.5in
\headheight 0.3in
\headsep 0.2in
\textwidth 6.5in
\textheight 9.0in
\setlength{\parindent}{0.5in}

% PAGE HEADER
%------------------------------------------
% Adjust the header text below (INSERT AUTHORS HERE)
\oddsidemargin 0.0in
\usepackage[tiny,rm]{titlesec}
\newpagestyle{trbstyle}{
\sethead{INSERT AUTHORS HERE}{}{\thepage}
}
\pagestyle{trbstyle}

% HEADINGS
%------------------------------------------
\renewcommand*{\refname}{\uppercase{References}}
\titleformat{\section}{\bfseries}{}{0pt}{\uppercase}
\titlespacing*{\section}{0pt}{12pt}{*0}
\titleformat{\subsection}{\bfseries}{}{0pt}{}
\titlespacing*{\subsection}{0pt}{12pt}{*0}
\titleformat{\subsubsection}{\itshape}{}{0pt}{}
\titlespacing*{\subsubsection}{0pt}{12pt}{*0}

% LISTS
%------------------------------------------
% Adjust lists a little. Not quite perfectly fitting TRB style, but vaguely
% close at least.
\usepackage{enumitem}
\setlist[1]{labelindent=0.5in,leftmargin=*}
\setlist[2]{labelindent=0in,leftmargin=*}

% CAPTIONS
%------------------------------------------
% Get the captions right. Authors must still be careful to use "Title Case"
% for table captions, and "Sentence case." for figure captions.
\usepackage{ccaption}
\usepackage{amsmath}
\makeatletter
\renewcommand{\fnum@figure}{\textbf{FIGURE~\thefigure} }
\renewcommand{\fnum@table}{\textbf{TABLE~\thetable} }
\makeatother
\captiontitlefont{\bfseries \boldmath}
\captiondelim{\;}
%\precaption{\boldmath}


% FONTS
%------------------------------------------
% Three options for fonts. I prefer Times for text and Computer Modern for
% math.

% Times for text, Computer Modern for math
\usepackage{times}
% Times for text and math
%\usepackage{pslatex}
% Times for text and math
%\usepackage{times,mathptmx} 

% Some pdf conversion tricks? Unsure.
\usepackage[T1]{fontenc}
\usepackage{textcomp}


% CITATIONS
%------------------------------------------
% TRB uses an Author (num) citation style. I haven't found a way to make
% LaTeX/Bibtex do this automatically using the standard \cite macro, but
% this modified \trbcite macro does the trick.

% TODO: sort&compress option?
\usepackage[sort,numbers]{natbib}
\newcommand{\trbcite}[1]{\citeauthor{#1} ({\it \citenum{#1}})}
\setcitestyle{round}


% LINE NUMBERING
%------------------------------------------
% TRB likes line numbers on drafts to help reviewers refer to parts of the
% document. Comment out for final versions.

% Use this for draft submissions - line numbering... sort of.
%\usepackage{parano}
%\renewcommand\theparano{\textbf{\scriptsize [\arabic{parano}]}}
% Use this for final submissions - no line numbering
\newcommand{\parano}{}


% DOCUMENT START
%------------------------------------------

% Add any additional \usepackage declarations here.

\usepackage{graphicx}

\begin{document}

\title{INSERT TITLE HERE}
\author{
Author 1 (corresponding author) \\
ADDRESS \\
ADDRESS \\
ADDRESS \\
ADDRESS \\
\\
Author 2 \\
ADDRESS \\
ADDRESS \\
ADDRESS \\
ADDRESS \\
\\
XXX words + Y figures + Z tables}

%% This generates the title page from the information given above.
\thispagestyle{empty}
\maketitle

\newpage

\thispagestyle{empty}
\section{Abstract}
%% ***   Put your Abstract here.   ***
%% (At most 250 words.)

INSERT ABSTRACT HERE

\newpage

\section{Introduction}

Insert text here... \trbcite{Rom06,GuoBha07}. See Figure~\ref{fig:bec} for
an example of how a figure can be included.

\begin{figure}
\begin{center}\includegraphics[width=6.5in]{figure_beckman}\end{center}
\caption{An illustration of the fitting
procedure.
In the left half, $Z$ is ignored and the PUMS is adjusted to match the
summary tables; they differ because the PUMS is derived from a smaller
sample than the summary tables. In the right half, the variable $Z(k)$ is added
to represent the $K$ zones that make up the PUMA. A constant initial
table filled with ones is used for a second IPF, which is fitted to the
summary tables and the adjusted PUMS. The summary tables now show variation
of $X$ by zone $Z$ (and likewise $Y \times Z$), while the adjusted PUMS
provides information about the association between $X$ and $Y$.}
\label{fig:bec}
\end{figure}

\bibliographystyle{trb}
%% ***   Set the bibliography file.   ***
\bibliography{ref}

\end{document}
