Arnau Rebassa i Villalonga wrote:
> I'm very newbie in lyx and I have a doubt about how to change the width
> of some paragraphs. I have tried using a minipage and setting the width to
> 85% of the text, this does the trick but if between two of those paragraphs
> there should be a page break, lyx moves all the paragraphs to another page
> inserting a lot of space before the begining of the minipage and the result
> looks horrible.
If you're using a koma class, you can use
\begin{addmargin}[<leftmargin>]{<bothmargins>}
your text
\end{addmargin}
(you have to use ERT/TeXmode since this is not directly supported in LyX).
or you can create a new environment. Add to preamble:
\newenvironment{mymargin}
{\list{}{%
\leftmargin3em% % adjust the value 3em as you need it
\rightmargin\leftmargin}%
\item\relax}
{\endlist}
and use in the document
\begin{mymargin}
your text
\end{mymargin}
Juergen.