我有一个文档,里面有一个很长(数据来自外部文件)但很窄的表格,我想在多列环境中拆分它,而不是让这个表格分散在几页上。不幸的是,这行不通,我有页面的三列,但表格只在第一列,超出了页面的末尾。
有人有什么想法吗?
有人知道该怎么做吗?
\documentclass[
10pt,
paper=a4,
twoside=true,
openany,
]{scrbook}
\usepackage{multicol} % Intermix single and multiple columns.
\usepackage{tabularray} % Typeset tabulars and arrays with LATEX3
\UseTblrLibrary{diagbox, functional, siunitx, varwidth}
\begin{document}
\begin{multicols}{3}
\begin{longtblr}[evaluate=\fileInput]
{
colspec = S|[dashed]S,
width = 0.20\linewidth,
measure = vbox,
rowhead = 1,
rowfoot = 0,
row{1} = {halign=center, font=\bfseries},
}
$^\circ$C & $\Omega$ \\ \hline
-40 & 107,627 \\
-39 & 100,100 \\
-38 & 93,170 \\
-37 & 86,787 \\
-36 & 80,903 \\
-35 & 75,476 \\
-34 & 70,465 \\
-33 & 65,835 \\
-32 & 61,551 \\
-31 & 57,586 \\
\fileInput{TableValues.tmp}
\end{longtblr}
\end{multicols}
\end{document}