I'm studying physics and have to do some experiments next month. Since I'm pretty new to Latex I thought it would be a good idea to finish the layout before it will become stressful.
The problem I am facing at the moment is that I want to see the Section name or a short version of it on the left of the headline. Most things I've found about it was a bit confusing to me so here I am

My current document looks like this:
Code: Select all
\documentclass[a4paper,fontsize=11pt]{scrartcl}
\usepackage[utf8]{inputenc} %Enable umlaut input
\usepackage[ngerman]{babel} %Enable umlaut output
\usepackage{amsmath} %Enable
\usepackage{graphicx} %Enable pictures
\usepackage{fancyhdr} %Enable Fancy pagestyle
\pagestyle{fancy} %Use Fancy pagestyle
\fancyhf{} %Clear head-/footline
\fancyhead[L]{} %Header left
\fancyhead[C]{} %Header center
\fancyhead[R]{\thepage} %Header right
\renewcommand{\headrulewidth}{0.4pt} %Seperate headline
\date{\today}
\title{Versuchsprotokoll}
\author{} %Authors
\begin{document}
\maketitle
\tableofcontents
\thispagestyle{empty}
\newpage
\pagenumbering{arabic} %Reset Page numbering
\section{Versuchsziel}
[...]
\end{document}
This just occurs when I convert on Linux (Kubuntu, Kile, TexLive) not on Windows (Win7, Texmaker, MikTex)Package babel Warning: No hyphenation patterns were loaded for
(babel) the language `ngerman'
(babel) I will use the patterns loaded for \language=0 instead.
I'm thankfull for ANY comments on that document.
Greetings Raoul