Re: Interline Space

2010-03-29 Thread Uwe Stöhr

Am 26.03.2010 09:41, schrieb YURENA MENDOZA:


Hello, as you can see when it begins paragraph of "However." the
distance with the preceding paragraph is greater than in the rest and in
this case there is no floating in this section.


This occurs because you explicitly printed all characters in your document black. You additionally 
set for all characters the font size "Large". I removed both from your document and then it works, 
see attached.


Coloring and setting a font size is designed to be used only for a sentence or paragraph but not for 
the whole document. To change the font size for the document, use the menu 
Document->Settings->Fonts->Base Size instead.

To color all characters of your document e.g. red, add this line to your 
document preamble:

% color everything red
\...@ifundefined{textcolor}
 {\usepackage{color}}{}
\color{red}

I have done this in the attached document.

---

Another tip: You are using chemical symbols like "CO2" in your document. Note that these must be 
typeset upright otherwise "CO2" means C*O2. For a description of support for chemically symbols, see 
the LyX Math manual, sec. 20 "Chemical Symbols and Equations". You find the manual in LyX's Help menu.


regards Uwe


example-help.lyx
Description: application/lyx


Re: Interline Space

2010-03-26 Thread Guenter Milde
On 2010-03-25, YURENA MENDOZA wrote:

> Hi, I have a problem with Lyx and the spaces between paragraphs. For some
> reason despite the fact that I have selected the optional of "default" in
> space between paragraphs there are paragraphs that appear with a greater
> space between them. What could be due to?

It could be due to the bug http://www.lyx.org/trac/ticket/4796


A workaround for current LyX versions:

* select Document>Settings>Paragraph-Separator: Vertical Space

for the visual feedback in the LyX window.

* insert the following lines in the LaTeX preamble

\usepackage{nccparskip}
\SetParskip{\medskipamount}

  (replace \medskipamount wiht your choice of paragraph skip).

  For a default skip use the simple one-liner:
  
\usepackage{parskip}
  
  instead of nccparskip.
  
Günter  



Re: Interline Space

2010-03-25 Thread Uwe Stöhr

YURENA MENDOZA schrieb:


Hi, I have a problem with LyX and the spaces between paragraphs. For some
reason despite the fact that I have selected the optional of "default" in
space between paragraphs there are paragraphs that appear with a greater
space between them. What could be due to?


This can occur when you have large floats, images or tables that don't 
fit on the current page. To avoid that, try to use always figure/table 
floats and not plain figures/tables. Also assure that the float 
placement option is _not_ "here definitively".


If this still doesn't help, insert a page break before the 
float/image/table, or whatever is too large to fit on the page.


If you even then still don't succeed, you can send me a LyX example file.

regards Uwe


Re: Interline Space

2010-03-25 Thread rgheck

On 03/25/2010 07:28 AM, YURENA MENDOZA wrote:

Hi, I have a problem with Lyx and the spaces between paragraphs. For some
reason despite the fact that I have selected the optional of "default" in
space between paragraphs there are paragraphs that appear with a greater
space between them. What could be due to?

   
Are there strange things about the pages where this happens? LaTeX will 
sometimes stretch the space between paragraphs, if that is necessary due 
to page breaking issues.


rh



Interline Space

2010-03-25 Thread YURENA MENDOZA
Hi, I have a problem with Lyx and the spaces between paragraphs. For some
reason despite the fact that I have selected the optional of "default" in
space between paragraphs there are paragraphs that appear with a greater
space between them. What could be due to?

Thank You