Search found 3 matches

by olilo
Wed Mar 18, 2009 3:17 pm
Forum: Graphics, Figures & Tables
Topic: How to add space between paragraphs
Replies: 2
Views: 8404

How to add space between paragraphs

Code: Select all

\setlength{\parskip}{1pt}
does not seem to work because 1pt is too small to be noticed.

Stupid I am :(
by olilo
Wed Mar 18, 2009 1:48 pm
Forum: Graphics, Figures & Tables
Topic: How to add space between paragraphs
Replies: 2
Views: 8404

How to add space between paragraphs

I found a solution: \setlength{\parskip}{2mm} in the column you want to format:

\begin{tabular}{ccp{11cm}}
\scalebox{0.500000}{\includegraphics{tip.png}}
&
\raisebox{5mm}{\strong{Note:}}
&
\vspace{-2.5\baselineskip}
\setlength{\parskip}{2mm}
First line of text.

Second line of text ...
by olilo
Wed Mar 18, 2009 12:27 pm
Forum: Graphics, Figures & Tables
Topic: How to add space between paragraphs
Replies: 2
Views: 8404

How to add space between paragraphs

I have a document with some space (probably 1pt) between paragraphs.

But in a tabular environment, the space between paragraphs becomes null.

I've tried to set parksip inside the tabular environment but it does not work.

What can I do to add some space between paragraphs in the table ?

Here is a ...