Skip to content

Instantly share code, notes, and snippets.

@CodingMinds
Created April 20, 2012 00:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CodingMinds/2424949 to your computer and use it in GitHub Desktop.
Save CodingMinds/2424949 to your computer and use it in GitHub Desktop.
Simple template for personal BaSys project reports.
% Author: GEEK1
% License: CC BY 3.0
% Description: Simple template for personal BaSys project reports.
% See also: http://www.basys.fh-frankfurt.de/
\documentclass[12pt]{scrartcl}
\usepackage[ngerman]{babel,hyperref}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[german=quotes]{csquotes}
\selectlanguage{ngerman}
\hypersetup{
colorlinks=true,
linkcolor=black,
urlcolor=black
}
\author{Author Name}
\title{Weekly Projectreport}
\date{\today}
\begin{document}
\newcommand{\command}[1]{\texttt{#1}}
\newcommand{\footurl}[1]{\footnote{\url{#1}}}
\maketitle
\pagenumbering{arabic}
\begin{description}
\item[Project title] \hfill \\
Projekttitel
\item[Description] \hfill \\
A short project description
\item[Members] \hfill \\
Member 1 (FB x), Member 2 (FB x), Member 3 (FB x), Member 4 (FB x)
\end{description}
\section*{Proceedings}
\subsection*{Results}
Results of the last two weeks \dots
\subsection*{Own part}
Own part and the relation to the project \dots
\subsection*{Problems}
The biggest problems \dots
\section*{Next tasks}
Taks for the next two weeks \dots
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment