帮助表格内的diagbox和换行

帮助表格内的diagbox和换行

我非常希望得到一些帮助。

基本上,我试图将这个表转置,但我要么能够限制每列的大小(例如 tabularx、tabu)以启用换行,要么我让 \backslashbox 工作,但不能同时使用。我还尝试了 multirow、minipage,但没有成功。

有人知道吗?

提前致谢!

按照 Bernard 的要求进行编辑1:切换行和列是为了展示,因为如果是垂直的,看起来不太好。对于这些列数来说,行太多了。反斜杠框或对角线框是为了将变量与函数系数的值区分开来。

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{diagbox}
\title{aaa}

\begin{document}

\begin{table}[h]
\centering
\caption{Coefficients and exponents for each variable}
\label{tab:tableofvalues}
\begin{tabular}{c|ccc}
    \label{table:ratiocoefficientadimensionalised}
    \centering
    \backslashbox{Ratio}{Coefficient}   &   $\gamma$  &   $\tau$    &   $R^2$ \\ \hline
    aaaaaa                              &   1.000   &   0.50    &   1.00\\
    bbbbbbbbbbb                         &   1.000   &   0.50    &   1.00\\
    cccccccc                            &   1.000   &   0.50    &   1.00\\
    ddddddddd                           &   1.000   &   0.50    &   1.00\\
    eeeeeeeeeeeeeeeeeeeeee              &   1.000   &   0.50    &   1.00\\
    ffffff                              &   1.000   &   0.50    &   1.00\\
\end{tabular}
\end{table}

    \begin{table}[h]\begin{tabular}{c c c c c c c}
        {\diagbox{Coefficient}{Ratio}} & {aaaaaa} & {bbbbbbbbbbb} &  {cccccccc} & {ddddddddd} &    {eeeeeeeeeeeeeeeeeeeeee} &   {ffffff} \\ \hline
        \\ \\ 
    \end{tabular}\end{table}

\end{document}

相关内容