Writing your Bachelor thesis
Guidelines and tools

Colloquium 04/2014
Center for Information and Language Processing, LMU Munich

David Kaumanns

This colloquium

Motivation

Protocolls

Presentations

Questions/ worries/ need for feedback?

Contact me: david [æt] cis.lmu.de

Offical course site: http://www.cis.uni-muenchen.de/~hs/teach/14s/colloquium/

Your (awesome) thesis

Useful resources

General structure

Abstract

Introduction

Main part

  1. Theory 1
    • Definitions
  2. Theory 2
    • Definitions
  3. Practical part
  4. Evaluation
    1. Experimental setup
    2. Methodology
    3. Results
    4. Diskussion

Conclusion

Evaluation of your thesis

Prerequisites

Content

Formal aspects

Scientific profit

Tools for max efficiency

Word processors

LaTex examples

Lists

\begin{itemize}
  \item foo
  \item bar
  \item biz
\end{itemize}

Images

\begin{figure}[h!]
  \caption{foo}
  \centering
    \includegraphics[width=0.5\textwidth]{foo}
\end{figure}

Tables

\begin{table}[htbp]
\caption{Foobar}
\resizebox{1.0\textwidth}{!}{
\begin{tabular}{|c||c|c|c|c|}
\hline
\textbf{1} & foo & bar & biz & X \\
\hline
\textbf{2} & foo & bar & biz & X \\
\hline
\end{tabular}}
\label{table:Qux}
\end{table}

Please...

Do not waste your time!

Pandoc

Lightweight markup language, based on Markdown

LaTex for human beings!

Our Pandoc template "Bachelor's choice"

Pandoc examples

Lists

- foo
- bar
    - biz
    - qux

1. one
2. two
3. three

Images

![foo](img/foo.png)

Tables

-------------------------------------------------------------
 Centered   Default           Right Left
  Header    Aligned         Aligned Aligned
----------- ------- --------------- -------------------------
   First    row                12.0 Example of a row that
                                    spans multiple lines.

  Second    row                 5.0 Here's another one. Note
                                    the blank line between
                                    rows.
-------------------------------------------------------------

Table: Here's the caption. It, too, may span
multiple lines.

Version control

Have fun!