For displaying the current section's title in the page-header, I usually use the scrpage2 package with scrbook. However, now I would like to write a report with scrartcl, and my settings are not supported anymore: the section is not displayed. Here is the scrpage2 code, that works with scrbook:
\usepackage[%
headsepline, %% Separation line below the header
% footsepline, %% Separation line above the footer
markuppercase
]{scrpage2}
\lefoot{} %% Bottom left on even pages
\lofoot{} %% Bottom left on odd pages
\refoot{} %% Bottom right on even pages
\rofoot{} %% Bottom right on odd pages
\cfoot{} %% Bottom center
\lehead{\bfseries\pagemark} %% Top left on even pages
\lohead{\bfseries\headmark} %% Top left on odd pages
\rehead{\bfseries\headmark} %% Top right on even pages
\rohead{\bfseries\pagemark} %% Top right on odd pages
\chead{} %% Top center
\pagestyle{scrheadings}
I found this resource (in German), but I do not understand the solution from that. How can I make the packages work with each other?