Seite 1 von 1

scrartcl - Absatz mit Leerzeile und Parkskip-Option

Verfasst: Mo 18. Jun 2012, 23:16
von fyaa
Hallo zusammen!

Ich habe eine Frage bezüglich des Absatzstils bei scrlartcl.
Und zwar schaffe ich es hier nicht, dass statt der Einrückung eine Leerzeile verwendet wird. Bei scrreprt hingegen funktioniert es, jedoch möchte ich scrlartcl verwenden.

Hier mein Minimalbeispiel:
\documentclass[a4paper,12pt,parskip=half*]{scrartcl}

\usepackage[utf8]{inputenc}
\usepackage{lmodern}

\title{MyTitle}
\author{MyAuthor}
\date{\today}

\begin{document}

\maketitle

\abstract{This will be an abstract.}

\section{Introduction}
My Introduction.

I need an empty line.

How is this done?

\section{Section}

Some more text\ldots

And maybe some more empty lines?

\end{document}
Vielleicht hat jemand von euch eine Idee? Wäre toll!

Verfasst: Di 19. Jun 2012, 05:19
von Sepp99
Das Problem ist der Befehl \abstract, den es so nicht gibt! Mit
\documentclass[
	paper=a4,
	fontsize=12pt,
	parskip=half*
	]{scrartcl}% zu den Optionen siehe http://www.komascript.de/betaKOMAoptions

\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage{blindtext}

\title{MyTitle}
\author{MyAuthor}
\date{\today}

\begin{document}

\maketitle

%\abstract{This will be an abstract.}
\begin{abstract}
This will be an abstract. \blindtext
\end{abstract}

\section{Introduction}
My Introduction.

I need an empty line. How is this done? \blindtext

\blindtext

\section{Section}

Some more text\ldots

And maybe some more empty lines?

\end{document} 
habe ich das Ergebnis im Anhang.

Gruß, Sepp.-

Verfasst: Di 19. Jun 2012, 10:34
von fyaa
Ahh.. ja okay, funktioniert jetzt tadellos. Danke! :)