Answers for "put space between line and table in latex"

0

latex table add space between rows

\begin{tabular}

% Row extra space
\setlength{\extrarowheight}{20pt}

% Column space (default is 6pt)
\setlength{\tabcolsep}{12pt}

\end{tabular}
Posted by: Guest on October-14-2020
-1

spacing in table latex

\setlength{\tabcolsep}{0.5em} % for the horizontal padding
{\renewcommand{\arraystretch}{1.2}% for the vertical padding
\begin{tabular}{|l|l|}
    \hline
    column 1 & column 2 \\ 
    \hline
    I really would like this less & crammed\\
    \hline
\end{tabular}
}
Posted by: Guest on July-03-2021

Code answers related to "put space between line and table in latex"

Browse Popular Code Answers by Language