Marie
Marie

Reputation: 349

How to remove extra space between rows in LaTex?

There is extra space between the 1st and 2nd bullet points on the right column. How can I remove it? Thanks in advance!

\documentclass[jou]{apa7}
\usepackage{tabularx}

\begin{document}
\begin{tabularx}{\linewidth}{XX} \hline
Example sentence Example sentence Example sentence Example sentence Example sentence Example sentence Example sentence Example sentence& $\bullet$ Example sentence Example sentence Example sentence Example sentence \\
& $\bullet$ Example sentence Example sentence Example sentence Example sentence Example sentence Example sentence \\
& $\bullet$ Example sentence \\ \hline

\end{tabularx}

\end{document}

f

Upvotes: 2

Views: 2552

Answers (1)

\documentclass[jou]{apa7}
\usepackage{tabularx}

\begin{document}
\begin{tabularx}{\linewidth}{XX} \hline
Example sentence Example sentence Example sentence Example sentence Example sentence Example sentence Example sentence Example sentence& $\bullet$ Example sentence Example sentence Example sentence Example sentence \newline
$\bullet$ Example sentence Example sentence Example sentence Example sentence Example sentence Example sentence
\newline $\bullet$ Example sentence \\ \hline

\end{tabularx}

\end{document}

enter image description here

Upvotes: 5

Related Questions