Hello,
I write my thesis in Lyx and use the article (Koma-Script) class.
When I use the numeration "paragrph", the text in this chapter starts behind in the same line.
How can I change this to normal style, what means the text begins one line under the numeration?
Thank you in advance,
Domser
LyX ⇒ Text after numeration "paragraph"
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Text after numeration "paragraph"
Hi Domser,
welcome to the board!
The package titlesec is very useful for customizing headings. Here, for just one heading type, you could redefine \paragraph to be similar to the original \subsection command of the class. Just place this code in your document preamble, adjust the lengths if desired:
Stefan
welcome to the board!
The package titlesec is very useful for customizing headings. Here, for just one heading type, you could redefine \paragraph to be similar to the original \subsection command of the class. Just place this code in your document preamble, adjust the lengths if desired:
Code: Select all
\makeatletter
\renewcommand\paragraph{\@startsection{paragraph}{4}{\z@}%
{-3.25ex\@plus -1ex \@minus -.2ex}%
{1.5ex \@plus .2ex}%
{\ifnum \scr@compatibility>\@nameuse{scr@v@2.96}\relax
\setlength{\parfillskip}{\z@ plus 1fil}\fi
\raggedsection\normalfont\sectfont\nobreak\size@paragraph}%
}%
}
\makeatother
LaTeX.org admin
Re: Text after numeration "paragraph"
Hi Stefan,
thanks a lot for your help! it works! (:
Best regards,
Domser
thanks a lot for your help! it works! (:
Best regards,
Domser