Я использовал extrarowheight
, чтобы добавить немного дополнительного пространства между строками в таблице, содержащей только текст. Хотя это работает нормально, это также влияет на первую строку. Есть ли способ остановить это или, может быть, удалить дополнительный интервал только в первой строке? Я понимаю, что я мог бы добиться пространства между строками по-другому, но я хочу избежать этого, если это возможно. Синяя стрелка обозначает пространство, которое я хотел бы уменьшить.
Вот скриншот и MWE.
\documentclass[12pt, a4paper]{memoir}
\usepackage[utf8]{inputenc}
\settypeblocksize{237mm}{150mm}{*} % size of text block on page
\begin{document}
\begin{table}[!htb]
\caption{Severity of identified problems and proposed changes}
\label{some_changes}
\setlength{\extrarowheight}{5mm} %add row padding
\begin{tabular}{>{\raggedright}p{3.5cm} >{\raggedright}p{8.5cm} p{1.5cm}}
\toprule
Change & Justification & Severity\\
\midrule
1. \parbox[t]{3cm}{\raggedright A few meaningful definitions} &
Just some sample text that is longer than a couple of lines. This text has
no meaning, it's just a sample text and does not do anything but fill some
space here. &
High\\
2. \parbox[t]{3cm}{\raggedright Some other thing that needs a change} &
Just some sample text that is longer than a couple of lines. This text has
no meaning, it's just a sample text and does not do anything but fill some
space here. &
Medium\\
3. \parbox[t]{3cm}{\raggedright Some other thing that needs a change} &
Just some sample text that is longer than a couple of lines. This text has
no meaning, it's just a sample text and does not do anything but fill some
space here. &
Low\\
\bottomrule
\end{tabular}
\end{table}
\end{document}
решение1
Альтернативное решение:
\documentclass[12pt, a4paper]{memoir}
\usepackage[utf8]{inputenc}
\settypeblocksize{237mm}{150mm}{*} % size of text block on page
\begin{document}
\begin{table}[!htb]
\caption{Severity of identified problems and proposed changes}
\label{some_changes}
\setlength{\extrarowheight}{5mm} %add row padding
\begin{tabular}{>{\raggedright}p{3.5cm} >{\raggedright}p{8.5cm} p{1.5cm}}
\toprule
\\[-3\normalbaselineskip] % <------------- Add this
Change & Justification & Severity\\
\midrule
1. \parbox[t]{3cm}{\raggedright A few meaningful definitions} &
Just some sample text that is longer than a couple of lines. This text has
no meaning, it's just a sample text and does not do anything but fill some
space here. &
High\\
2. \parbox[t]{3cm}{\raggedright Some other thing that needs a change} &
Just some sample text that is longer than a couple of lines. This text has
no meaning, it's just a sample text and does not do anything but fill some
space here. &
Medium\\
3. \parbox[t]{3cm}{\raggedright Some other thing that needs a change} &
Just some sample text that is longer than a couple of lines. This text has
no meaning, it's just a sample text and does not do anything but fill some
space here. &
Low\\
\bottomrule
\end{tabular}
\end{table}
\end{document}
Основная идея заключается в добавлении отрицательного интервала после , \toprule
чтобы свести на нет отступ, добавленный из \extrarowheight
. Добавление
\\[-3\normalbaselineskip]
кажется, восстанавливает первую строку до ее первоначальной высоты (без отступов). Но, конечно, вы всегда можете изменить значение в квадратных скобках на любое другое, которое вам нравится.
решение2
является ли использование \addlinespace[5mm]
из пакета booktabs
приемлемым вариантом для вас?
\documentclass[12pt, a4paper]{memoir}
\usepackage[utf8]{inputenc}
\settypeblocksize{237mm}{150mm}{*} % size of text block on page
\usepackage{lipsum}
\usepackage{showframe}
\renewcommand\ShowFrameLinethickness{0.15pt}
\renewcommand*\ShowFrameColor{\color{red}}
\begin{document}
\begin{table}[htb]
\caption{Severity of identified problems and proposed changes}
\label{some_changes}
\begin{tabular}{>{\raggedright}p{0.6cm}@{\ }>{\raggedright}p{3cm} >{\raggedright}p{8.5cm} p{1.5cm}}
\toprule
\multicolumn{2}{l}{Change} & Justification & Severity\\
\midrule\addlinespace[5mm]
1. & A few meaningful definitions &
\lipsum*[11] &
High\\ \addlinespace[5mm]
2. & \raggedright Some other thing that needs a change &
\lipsum*[11] &
Medium\\ \addlinespace[5mm]
3. & Some other thing that needs a change &
\lipsum*[11] &
Low\\
\bottomrule
\end{tabular}
\end{table}
\end{document}