summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/mitthesis/mydesign.tex
diff options
context:
space:
mode:
Diffstat (limited to 'macros/latex/contrib/mitthesis/mydesign.tex')
-rw-r--r--macros/latex/contrib/mitthesis/mydesign.tex58
1 files changed, 58 insertions, 0 deletions
diff --git a/macros/latex/contrib/mitthesis/mydesign.tex b/macros/latex/contrib/mitthesis/mydesign.tex
new file mode 100644
index 0000000000..535f2fbb0e
--- /dev/null
+++ b/macros/latex/contrib/mitthesis/mydesign.tex
@@ -0,0 +1,58 @@
+% From mitthesis package
+% Version: 1.00, 2023/06/17
+% Documentation: https://ctan.org/pkg/mitthesis
+
+
+%%%%%%%%%% Color support %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+%% Color package: xcolor.
+%% Change this if you prefer something else
+
+%% Options for xcolor
+\ifpdftex\def\MyColorOption{fixpdftex}\else\ifluatex\def\MyColorOption{luatex}\else\ifxetex\def\MyColorOption{xetex}\else\def\MyColorOption{}\fi\fi\fi
+
+\usepackage[hyperref,\MyColorOption,dvipsnames,svgnames,x11names]{xcolor}
+%% can add option [table] to xcolor to use color in tables (see xcolor documentation)
+
+
+%%%%%%%%% Caption support %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%
+% see documentation for details of how to customize captions
+
+\RequirePackage{caption}
+\RequirePackage{subcaption}
+
+
+%%%%%%%%% Customize list environments %%%%%%%%%%%%%%%%%%%%
+%
+% see documentation for details of how to customize lists
+
+%\RequirePackage{enumitem}
+
+
+%%%%%%%%% Customize titles and section headings %%%%%%%%%%
+%
+% see documentation for details of how to customize headings
+
+\RequirePackage{titlesec}
+
+% these titlesec commands just automate the bold math in some headings (rest follows default styles)
+\titleformat{\section}{\mathversion{bold}\normalfont\Large\bfseries}{\thesection }{1em}{}
+\titleformat{\subsection}{\mathversion{bold}\normalfont\large\bfseries}{\thesubsection}{1em}{}
+\titleformat{\subsubsection}{\mathversion{bold}\normalfont\normalsize\bfseries}{\thesubsubsection}{1em}{}
+
+% ==> NOT every font includes a bold math version, so you may need to use other math macros in the headings to get bold math <==
+
+
+%%%%%%%%% Change page margins %%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%
+% The default thesis margin is 1 inch all around. You may want different margins (e.g., to add a gutter for binding),
+% in which case you can use the \newgeometry command from the geometry package. Refer to the package documentation
+% for details.
+%
+% mitthesis defaults: [top=1in,bottom=1in,left=1in,right=1in,marginparwidth=50pt,headsep=12pt,footskip=0.5in]
+%
+% The following tells the geometry package to use a two-sided layout with a 1 cm binding offset on the inside
+% and 1 inch margins all around, reducing textwidth slightly (by 0.7 cm). See geometry documentation, Section 8.2.
+%
+%\newgeometry{twoside, bindingoffset=1cm,margin=1in,marginparwidth=50pt,headsep=12pt,footskip=0.5in}