I have two questions regarding the (very helpful!) master thesis - template:
1. In general, how do I modify the theorem environment?
2. In particular: by typing
Code: Select all
\begin{proposition}
...
\end{proposition}
Thanks in advance!
Edit: To be more precise, this is the preamble I am referring to (w/o contents etc. due to space restriction here):
Code: Select all
\documentclass[11pt, oneside]{Thesis} % The default font size and one-sided printing (no margin offsets)
\usepackage{amsthm,amsmath,amssymb,bm,bbm} % Formelsetzung und mathematische Symbole
\theoremstyle{plain}
\theoremstyle{definition}
\theoremstyle{remark}
\usepackage{dsfont}
%
% Grafik-Pakete einbinden
\usepackage{graphicx,psfrag} % Basis-Pakete zum Laden von Bildern (jpg?)
\usepackage{float}
\usepackage{color} % erweitertes Farb-Paket, alternativ: 'xcolor'
%\usepackage{pstricks,pst-plot} % weiteres Paket zur Erstellung von LaTeX-Grafiken
%
% erweiterte Tabellen
\usepackage{array} % Basis-Paket
\usepackage{booktabs} % 'schöne' Tabellen
\usepackage{tabularx} % Tabellen mit dynamischer Spaltenbreite
\usepackage{longtable} % Tabellen mit möglichem Seitenumbruch
\usepackage{multirow} % mehrzeilige Zellen
\newcommand{\iffdef}{\mathrel{\mathop{\raisebox{1pt}{\scriptsize$:$}}}\Leftrightarrow} %Makro für Definitionspfeil
\newcommand{\equaldef}{\mathrel{\mathop{\raisebox{1pt}{\scriptsize$:$}}}=} % Makro für Definitionsgleichheitszeichen
%
% weitere
\usepackage{verbatim, listings} % Darstellung von Quellcode
\lstset{language=TeX,basicstyle=\footnotesize,frame=single,breaklines=true}
\usepackage[format=plain,indention=.5cm]{caption} % für selbsdefinierte captions
\usepackage{stmaryrd} % Blitzsymbol bei Widerspruch
\graphicspath{{Pictures/}} % Specifies the directory where pictures are stored
\usepackage[authoryear]{natbib} %Harvard Style
% Use the natbib reference package - read up on this to edit the reference style; if you want text (e.g. Smith et al., 2012) for the in-text references (instead of numbers), remove 'numbers'
\setcitestyle{round,aysep={},yysep={;}} %citation punctuation: round braces, no comma nor semicolon between author and year
\hypersetup{urlcolor=black, colorlinks=true} % Colors hyperlinks in blue - change to black if annoying
\title{\ttitle} % Defines the thesis title - don't touch this
\begin{document}
\frontmatter % Use roman page numbering style (i, ii, iii, iv...) for the pre-content pages
\setstretch{1.5} % Line spacing of 1.5
% Define the page headers using the FancyHdr package and set up for one-sided printing
\fancyhead{} % Clears all page headers and footers
\rhead{\thepage} % Sets the right side header to show the page number
\lhead{} % Clears the left side page header
\pagestyle{fancy} % Finally, use the "fancy" page style to implement the FancyHdr headers
\setlength{\parindent}{10pt} %einzug bei neuem absatz
\newcommand{\HRule}{\rule{\linewidth}{0.5mm}} % New command to make the lines in the title page
% PDF meta-data
\hypersetup{pdftitle={\ttitle}}
\hypersetup{pdfsubject=\subjectname}
\hypersetup{pdfauthor=\authornames}
\hypersetup{pdfkeywords=\keywordnames}
%----------------------------------------------------------------------------------------
% TITLE PAGE
%----------------------------------------------------------------------------------------
%----------------------------------------------------------------------------------------
% DECLARATION PAGE
% Your institution may give you a different text to place here
%----------------------------------------------------------------------------------------
\clearpage % Start a new page
\clearpage % Start a new page
%----------------------------------------------------------------------------------------
% BIBLIOGRAPHY
%----------------------------------------------------------------------------------------
\label{Bibliography}
\lhead{\emph{Bibliography}} % Change the page header to say "Bibliography"
\bibliographystyle{dcu} % Use the "unsrtnat" BibTeX style for formatting the Bibliography
\bibliography{Bibliography} % The references (bibliography) information are stored in the file named "Bibliography.bib"
\end{document}