LyX ⇒ Changing Environment settings
Changing Environment settings
I am new to LyX and Latex. My question is rather simple. When I select the paragraph environment the text appears bold in the DVI and the PDF output..I want to change it back to normal size. How do I do it ??
Or should I ask..Can we do it ??
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Changing Environment settings
Look in your LaTeX distribution for the document class file you're using, and find the definition of \paragraph. For example, in the standard article class the definition is
Code: Select all
\newcommand\paragraph{\@startsection{paragraph}{4}{\z@}%
{3.25ex \@plus1ex \@minus.2ex}%
{-1em}%
{\normalfont\normalsize\bfseries}}
Code: Select all
\makeatletter
\renewcommand\paragraph{\@startsection{paragraph}{4}{\z@}%
{3.25ex \@plus1ex \@minus.2ex}%
{-1em}%
{\normalfont\normalsize\mdseries}}
\makeatother
It's possible that there is some confusion about paragraphs (as in, document text) and paragraphs (as in, the sectioning command higher than a subparagraph and lower than a subsubsection). You won't see the \paragraph command used much unless you have a very structured document with lots of information in it. Legal documents come to mind, as to some scientific documents (Lawyers often like to number their paragraphs, which can be done with LaTeX as well).
If you just want plain old document text, don't use the \paragraph command; just start typing.