You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
122 lines
3.0 KiB
122 lines
3.0 KiB
\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}
|
|
|
|
%% TODO :: remove DRAFT watermark
|
|
\usepackage[firstpageonly]{draftwatermark}
|
|
\SetWatermarkText{DRAFT}
|
|
\SetWatermarkScale{4}
|
|
|
|
\renewcommand{\baselinestretch}{1.3}
|
|
\parskip = \medskipamount
|
|
\frenchspacing
|
|
\bibpunct[; ]{(}{)}{;}{a}{,}{;}
|
|
|
|
%%% INSTRUCTIONS
|
|
% To create a PDF, run the following commands:
|
|
% - pdflatex <filename>.tex
|
|
% - bibtex <filename>
|
|
% - pdflatex <filename>.tex
|
|
% - pdflatex <filename>.tex
|
|
%%% These steps are required everytime after add a new entry in references.bib file
|
|
%% In General, running pdflatex <filename>.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}
|
|
\newcommand{\myEmail}{st169661@stud.uni-stuttgart.de}
|
|
|
|
|
|
% 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}
|
|
\newcommand{\supervisorEmail}{thang.vu@ims.uni-stuttgart.de}
|
|
|
|
%% 2nd supervisor/examiner details here
|
|
%%
|
|
%%
|
|
|
|
|
|
% Start document
|
|
\begin{document}
|
|
|
|
\begin{titlepage}
|
|
\begin{center}
|
|
|
|
\begin{figure}[h!]
|
|
\centering
|
|
\includegraphics[width=.2\linewidth]{images/ims_logo.jpeg}
|
|
\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{0.5cm}
|
|
|
|
\Large{\textbf{\name}} \\ [2pt]
|
|
\large{M.Sc. Computational Linguistics} \\ [1pt]
|
|
\large{Mat.Nr.: \matrikNummer} \\ [1pt]
|
|
\normalsize{\myEmail}
|
|
|
|
\vspace{0.5cm}
|
|
|
|
\large{\textbf{Supervisor}}\\
|
|
\supervisor\\ [1pt]
|
|
\normalsize{\supervisorEmail}\\
|
|
|
|
\end{center}
|
|
\end{titlepage}
|
|
|
|
%% 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}
|
|
|
|
%% 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} |