是否可以定义自定义单元格间距longtable
?
例子:
\begin{longtable}{|>{\RaggedRight}p{8cm}|>{\RaggedRight}p{8cm}|}
...
one & two\\
three & four\\
five & six\\
\end{longtable}
我希望单元格的three
高度four
为 3cm,而其他单元格保持原样。我该怎么做?
答案1
使用longtblr
新 LaTeX3 包的环境tabularray
,可以方便的设置行高。
\documentclass{article}
\usepackage[a4paper,margin=1cm]{geometry}
\usepackage{tabularray}
\begin{document}
\begin{longtblr}[
caption = {My First Long Table},
label = {not:long},
]{
colspec = {|Q[l,8cm]|Q[l,8cm]|},
hlines, vlines,
}
one & two \\
\SetRow{3cm,rowsep=0pt} three & four \\
five & six \\
\end{longtblr}
\end{document}