% \file{style/mu/fithesis-econ.sty} % This is the style file for the theses written at the Faculty of % Economics and Administration at the Masaryk University in Brno. % It has been prepared in accordance with the formal requirements % published at the website of the faculty\footnote{See \url{ht^^A % tp://is.muni.cz/auth/do/econ/predpisy/smernice/prehled/45931^^A % 363/Smernice2014-9.pdf}}. % \begin{macrocode} \NeedsTeXFormat{LaTeX2e} \ProvidesPackage{fithesis/style/mu/fithesis-econ}[2015/06/27] % \end{macrocode} % The file defines the color scheme of the respective faculty. % \begin{macrocode} \thesis@color@setup{ links={HTML}{F27995}, tableEmph={HTML}{E8B88B}, tableOdd={HTML}{F5ECEB}, tableEven={HTML}{EBD8D5}} % \end{macrocode} % The file loads the following packages: % \begin{itemize} % \item\textsf{tikz} -- Used for dimension arithmetic. % \item\textsf{geometry} -- Allows for modifications of the type % area dimensions. % \end{itemize} % In addition to this, the type area width is set to % 16\,cm in accordance with the formal requirements of the faculty. % This leads to overfull lines and is against the good conscience % of the author of this style. % \begin{macrocode} \thesis@require{tikz} \thesis@require{geometry} \geometry{top=25mm,bottom=20mm,left=25mm,right=25mm,includeheadfoot} % \end{macrocode} % \begin{macro}{\thesis@blocks@cover} % The |\thesis@blocks@cover| macro typesets the thesis % cover. % \begin{macrocode} \def\thesis@blocks@cover{% \ifthesis@cover@ \thesis@blocks@clear \begin{alwayssingle} \thispagestyle{empty} \begin{center} {\sc\thesis@titlePage@LARGE\thesis@@{universityName}\\% \thesis@titlePage@Large\thesis@@{facultyName}\\} \vfill {\bf\thesis@titlePage@Huge\thesis@@{typeName}} \vfill {\thesis@titlePage@large\thesis@place \ \thesis@year\hfill\thesis@author} \end{center} \end{alwayssingle} \fi} % \end{macrocode} % \end{macro} % The style file configures the title page header to include the % name of the field of study and redefines the title page content % not to include the author's name and the title page footer % to include both the author's and advisor's name, the year and % place of the thesis defense in accordance with the formal % requirements of the faculty. % \begin{macrocode} \thesis@blocks@titlePage@field@true \def\thesis@blocks@titlePage@content{% {\thesis@titlePage@Huge\bf\thesis@TeXtitle} \ifthesis@english\else {\\[0.1in]\thesis@titlePage@Large\bf\thesis@TeXtitleEn} \fi {\\[0.3in]\thesis@titlePage@large\sc\thesis@@{typeName}\\}} \def\thesis@blocks@titlePage@footer{% {\thesis@titlePage@large {% Calculate the width of the thesis author and advisor boxes \let\@A\relax\newlength{\@A}\settowidth{\@A}{{% \bf\thesis@@{advisorTitle}:}} \let\@B\relax\newlength{\@B}\settowidth{\@B}{\thesis@advisor} \let\@C\relax\newlength{\@C}\settowidth{\@C}{{% \bf\thesis@@{authorTitle}:}} \let\@D\relax\newlength{\@D}\settowidth{\@D}{\thesis@author} \let\@left\relax\newlength{\@left}\pgfmathsetlength{\@left}{% max(\@A,\@B)} \let\@right\relax\newlength{\@right}\pgfmathsetlength{\@right}{% max(\@C,\@D)} % Typeset the thesis author and advisor boxes \vskip 2in\begin{minipage}[t]{\@left} {\bf\thesis@@{advisorTitle}:}\\\thesis@advisor \end{minipage}\hfill\begin{minipage}[t]{\@right} {\bf\thesis@@{authorTitle}:}\\\thesis@author \end{minipage}}\\[4em]\thesis@place, \thesis@year}} % \end{macrocode} % \begin{macro}{\thesis@blocks@frontMatter} % The |\thesis@blocks@frontMatter| macro sets up the style % of the front matter of the thesis. The page numbering is arabic % as per the formal requirements and it is hidden. In case of % double-sided typesetting, the geometry is altered according to % the requirements of the faculty. % \begin{macrocode} \def\thesis@blocks@frontMatter{% \thesis@blocks@clear % In case of double-sided typesetting, change the geometry \ifthesis@twoside@ \newgeometry{top=25mm,bottom=20mm,left=35mm, right=15mm, includeheadfoot} \fi\pagestyle{empty} \parindent 1.5em \setcounter{page}{1} \pagenumbering{arabic}} % \end{macrocode} % \end{macro}\begin{macro}{\thesis@blocks@mainMatter} % The |\thesis@blocks@mainMatter| macro sets up the style % of the main matter of the thesis. The page numbering doesn't % reset at the beginning of the main thesis as per the formal % requirements. % \begin{macrocode} \def\thesis@blocks@mainMatter{% \thesis@blocks@clear \pagestyle{thesisheadings} \parindent 1.5em\relax} % \end{macrocode} % \end{macro}\begin{macro}{\thesis@blocks@toc} % The |\thesis@blocks@toc| macro typesets the table of % contents. % \begin{macrocode} \def\thesis@blocks@toc{% \thesis@blocks@clear% \tableofcontents} % \end{macrocode} % \end{macro}\begin{macro}{\thesis@blocks@tables} % The |\thesis@blocks@tables| macro optionally typesets the % |\listoftables| and |\listoffigures|. % \begin{macrocode} \def\thesis@blocks@tables{% \thesis@blocks@clear% \thesis@blocks@lot% \thesis@blocks@lof} % \end{macrocode} % \end{macro} % All blocks within the autolayout preamble that are not defined % within this file are defined in the % \texttt{style/mu/fithesis-base.sty} file. % \begin{macrocode} \def\thesis@preamble{% \thesis@blocks@cover% \thesis@blocks@frontMatter% \thesis@blocks@titlePage% \thesis@blocks@assignment% \thesis@blocks@clearRight% \thesis@blocks@abstract% \thesis@blocks@abstractEn% \thesis@blocks@keywords% \thesis@blocks@keywordsEn% \thesis@blocks@declaration% \thesis@blocks@thanks% \thesis@blocks@toc% \thesis@blocks@mainMatter} % \end{macrocode} % The style file defines the autolayout postamble as the list of % tables and the list of figures. All blocks are defined in the % \texttt{style/mu/base.sty} file, although some are redefined in % this file. % \begin{macrocode} \def\thesis@postamble{% \thesis@blocks@tables} % \end{macrocode}