9

Consider this MWE

\documentclass{article}

\def\sample{text text text text text}
\def\Sample{\sample\sample}

\parindent=0pt
\begin{document}

\Sample\\
\Sample\\[2\baselineskip]
\Sample

\bigskip

\begin{tabular}{c}
\Sample\\
\Sample\\[2\baselineskip]
\Sample
\end{tabular}

\end{document} 

Which produce

enter image description here

As you can see \\[2\baselineskip] add vertical space of 2\baselineskip after line break outside tabular environment.

If we add \\[2\baselineskip] inside tabular there is no effect as though the length \baselineskip became 0pt, why is this happening and how to fix it ( add vertical space of 2\baselineskip inside tabular), thanks.

Salim Bou
  • 17,021
  • 2
  • 31
  • 76

0 Answers0