\documentclass[a4paper, 12pt]{article} \usepackage[paper=a4paper,left=3cm, right=3cm]{geometry} \usepackage[utf8]{inputenc} \usepackage{color} \usepackage[english]{babel} \usepackage{csquotes} \usepackage{caption} \usepackage{subcaption} \usepackage{array} \usepackage{graphicx} \usepackage{makecell} \usepackage[colorlinks=true,linkcolor=blue,citecolor=blue, allcolors=blue]{hyperref} \usepackage{natbib} %% You can change the Bibliographic styles here \bibliographystyle{plainnat} \renewcommand{\baselinestretch}{1.3} \parskip = \medskipamount \frenchspacing \bibpunct[; ]{(}{)}{;}{a}{,}{;} %%% INSTRUCTIONS % To create a PDF, run the following commands: % - pdflatex .tex % - bibtex % - pdflatex .tex % - pdflatex .tex %%% These steps are required everytime after add a new entry in references.bib file %% In General, running pdflatex .tex is enough if the references are not modified. %%% SET GLOBAL DATA HERE % Preliminary title of the thesis. \newcommand{\thesisTitle}{Prompt-based methods for\\ Dialog State Tracking} % Full Name & other details \newcommand{\name}{Mandava, Sai Pavan} \newcommand{\matrikNummer}{3461015} % start date and end date of the Thesis \newcommand{\startDate}{Start Date: 01.08.2022} \newcommand{\finishDate}{End Date: 01.02.2023} % Thesis Supervisor \newcommand{\supervisor}{Prof. Dr. Thang Vu} %% 2nd examiner details here \newcommand{\examiner}{Dr. Antje Schweitzer} % Start document \begin{document} \begin{titlepage} \newgeometry{left=3.5cm,right=2cm} \begin{center} \begin{figure}[h!] \centering \includegraphics[width=.2\linewidth]{images/ims_logo} \end{figure} \large{Institut f{\"u}r Maschinelle Sprachverarbeitung\\Universit{\"a}t Stuttgart\\Pfaffenwaldring 5b\\70569 Stuttgart}\\ \vspace{1cm} \LARGE{Master Thesis}\\[0.4cm] \Huge{\textbf{\thesisTitle}}\\ [0.5cm] \large{\startDate} \\ \large{\finishDate} \\ \vspace{1cm} \Large{\textbf{\name}} \\ [2pt] \large{M.Sc. Computational Linguistics} \\ [1pt] \large{Mat.Nr.: \matrikNummer} \\ [1pt] \vspace{1cm} \vfill \begin{table}[h!] \centering \begingroup \setlength{\tabcolsep}{16pt} % Default value: 6pt \renewcommand{\arraystretch}{1.3} % Default value: 1 \begin{tabular}{lr} \large{\textbf{Supervisor/Examiner}} & \large{\supervisor}\\ \large{\textbf{Examiner}} & \large{\examiner}\\ \end{tabular} \endgroup \end{table} \end{center} \end{titlepage} % back to original geometry \newgeometry{left=3cm,right=3cm} \pagestyle{empty} % remove page numbers for first few pages %% Thesis Main Content Starts here %% Create separate files for each section for better organization %% You can add/modify/delete the below sections according to your needs %% If the below sections are modified, the files should match exactly \input{sections/00_statement} \newpage %% abstract \input{sections/01_abstract} \pagestyle{plain} % change page style back to plain %% add table of contents here \tableofcontents \newpage \input{sections/02_intro} \input{sections/03_background} \input{sections/04_methods} \input{sections/05_results} \input{sections/06_analysis} \input{sections/07_conclusion} \clearpage %% Add all your BibTex citations in references.bib file \bibliography{references} \end{document}