How to start a new line after a paragraph title in Lyx?

I am using Lyx document processor for LaTeX.

I need to use the Paragraph environment (because I have Subsubsubsections), and I want the paragraphs to appear in the table of contents.

I managed to get a paragraph in TOC by changing the parameters of the document. However, the text immediately after the name does not start on a new line.

I kind of fixed this by inserting ERT (LaTeX code) \newline.

However, now I have a problem, because the page number for paragraphs in the table of contents is also displayed on the next line! (Instead of the right to the page, under different page numbers.)

So, how do I get the body text of a paragraph to start on a new line without affecting the TOC?

Thank.

+3
source share
1

, .

→ →

\renewcommand\paragraph{\@startsection{paragraph}{4}{\z@}%
   {-3.25ex\@plus -1ex \@minus -.2ex}%
   {1.5ex \@plus .2ex}%
   {\normalfont\normalsize\bfseries}}

Src: http://www.latex-community.org/forum/viewtopic.php?f=5&t=1383

, .

\@startsection ( , ) http://infohost.nmt.edu/tcc/help/pubs/nmtthesis/old/annotated/at.startsection.html

+7

All Articles