Thesis/main.tex
Split 623f760084 Add Split's editorial comments with color-coded feedback
Edit mode system:
- \editmode{1} enables comments + wider margins
- \editmode{0} hides all comments for final output

Comment types (color-coded):
- \splitnote{} (green): General observations, good work
- \splitsuggest{} (yellow): Suggestions to consider
- \splitpolish{} (orange): Needs polish, should fix
- \splitfix{} (red): Must fix, not acceptable

Comments added throughout all sections with substantive feedback
on structure, wording, and Gopen-style improvements.

Also fixed typos: 'ivariant' → 'invariant', 'excess' → 'access'
2026-03-09 21:44:23 -04:00

79 lines
2.2 KiB
TeX

\documentclass{dane_proposal_format}
\usepackage{booktabs} % For professional tables
\usepackage{tabularx} % For flexible table columns
\usepackage{multirow} % For multi-row cells
\usepackage{array} % Enhanced table formatting
\usepackage[table]{xcolor} % For colored tables (optional)
\usepackage{pgfgantt}
\usepackage{pdfpages} % For including PDF files
% === SPLIT'S EDITING COMMENTS ===
% Set to 1 for edit mode (wider margins, visible comments)
% Set to 0 for final mode (normal margins, comments hidden)
\newcommand{\editmode}{1}
\ifnum\editmode=1
% Edit mode: load todonotes, adjust margins
\usepackage[colorinlistoftodos,prependcaption,textsize=small]{todonotes}
\setlength{\marginparwidth}{2.5cm}
\setlength{\oddsidemargin}{0in}
\setlength{\textwidth}{5.5in} % Narrower text = more margin space
% Color-coded comment commands
% Green: General observations, "nice work", vibes
\newcommand{\splitnote}[1]{\todo[color=green!40]{#1}}
% Yellow: "Hey, check this out maybe?" - suggestions
\newcommand{\splitsuggest}[1]{\todo[color=yellow!60]{#1}}
% Orange: "This needs some polish" - should fix
\newcommand{\splitpolish}[1]{\todo[color=orange!50]{#1}}
% Red: "Fix this. Not acceptable." - must fix
\newcommand{\splitfix}[1]{\todo[color=red!40]{#1}}
% Inline versions
\newcommand{\splitinline}[1]{\todo[inline,color=green!40]{#1}}
\else
% Final mode: no comments, normal margins
\newcommand{\splitnote}[1]{}
\newcommand{\splitsuggest}[1]{}
\newcommand{\splitpolish}[1]{}
\newcommand{\splitfix}[1]{}
\newcommand{\splitinline}[1]{}
\fi
% ================================
\begin{document}
\pagenumbering{roman}
\maketitle
\input{1-goals-and-outcomes/research-statement.tex}
\newpage
\tableofcontents
\newpage
\pagenumbering{arabic}
\input{1-goals-and-outcomes/goals}
\newpage
\input{2-state-of-the-art/state-of-art}
\newpage
\input{3-research-approach/approach}
\newpage
\input{4-metrics-of-success/metrics}
\newpage
\input{5-risks-and-contingencies/risks}
\newpage
\input{6-broader-impacts/impacts}
\newpage
\input{8-schedule/schedule}
\bibliographystyle{ieeetr}
\bibliography{references}
% White Paper (optional)
% \input{whitepaper/v1}
\end{document}