>>>>> "Herbert" == Herbert <[EMAIL PROTECTED]> writes:
Herbert> Reuben Thomas wrote:
>> > is it possible to inser a Linebreak after the paragraph-style?
>>
>> If you're using the LaTeX document classes then the answer is "not
>> easily". I've done it myself by modifying the article.cls file (and
>> calling it myarticle.cls). It's quite easy if you know any TeX: I
>> just copied the definition of \subsubsection over that for
>> \paragraph.
Herbert> Change the lines 361-362 in
Herbert> /usr/share/texmf/tex/latex/base/article.cls
Herbert> they define the paragraph-style.
Herbert> \newcommand\paragraph{\@startsection{paragraph}{4}{\z@}%
Herbert> {-3.25ex\@plus -1ex \@minus -.2ex}% {1.5ex \@plus .2ex}%
Herbert> {\normalfont\normalsize\bfseries}}
Herbert> only the second and third one has to change.
Rather than changing article.cls, you should add in your document
preamble
\renewcommand\paragraph{\@startsection{paragraph}{4}{\z@}%
{-3.25ex\@plus -1ex \@minus -.2ex}%
{1.5ex \@plus .2ex}%
{\normalfont\normalsize\bfseries}}
[I just changed the \newcommand to \renewcommand]
You can also use secsty.sty, which gives a much cleaner interface to
all this stuff.
JMarc