Ans. M4: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 10: | Line 10: | ||
\baselineskip=12pt | \baselineskip=12pt | ||
</geshi> | </geshi> | ||
But please note, this should be given within a group or inside | But please note, this should be given within a group or inside an environment. Otherwise it will affect the spacing of the rest of the paragraphs. If you | ||
want to give just for one paragraph, then: | want to give just for one paragraph, then: | ||
<geshi lang="latex"> | <geshi lang="latex"> |
Revision as of 16:42, 9 June 2009
Of course you may control the spacing using the command \baselineskip
. The syntax is:
<geshi lang="latex">
\baselineskip=??pt
</geshi>
Instead of ??
you may give the skip. For example:
<geshi lang="latex">
\baselineskip=12pt
</geshi> But please note, this should be given within a group or inside an environment. Otherwise it will affect the spacing of the rest of the paragraphs. If you want to give just for one paragraph, then: <geshi lang="latex">
\bgroup \baselineskip=12pt Here goes the para...... ....................... \egroup
</geshi>
For controlling the spacing between the rows in the table, you have to use a package called array.sty
in the preamble:
<geshi lang="latex">
\usepackage{array}
</geshi>
then, just before \begin{tabular}
, please give:
<geshi lang="latex">
\advance\extrarowheight-??pt
</geshi>
Instead of ??
, please give the value. For example:
<geshi lang="latex">
\begin{table} \caption{Here goes the table caption} \advance\extrarowheight-5pt \begin{tabular}{ll} \hline aa & bb\\ \hline cc & dd\\ ee & ff\\ \hline \end{tabular} \end{table}
</geshi>