如何使旋轉的文字適合併使表格......更美觀?

如何使旋轉的文字適合併使表格......更美觀?

乳膠新手試圖創建一個像樣的桌子......顯然這並不那麼容易。

下表有兩個問題我找不到解決方法:

  • 找不到第一列上的旋轉文字。我該如何解決這個問題?
  • 表格本身看起來有點簡單,而且可能也有點難以閱讀。怎樣才能讓它更好看/更清晰呢?

在此輸入影像描述

微量元素:

\documentclass[british]{article}
\usepackage{array}
\usepackage{multirow}
\usepackage{rotating}

\begin{document}
\begin{table}[]
    \begin{tabular}{lccccc|cccc}
                                                                                              &                                & \multicolumn{4}{c|}{Powerlaw model} & \multicolumn{4}{c}{Exponential model}                                                 \\ \cline{3-10}
                                                                                              & \multicolumn{1}{c|}{Size (MB)} & 100                                 & 500                                   & 1024  & 2048  & 100   & 500   & 1024  & 2048  \\ \cline{2-10}
        \multicolumn{1}{l|}{\parbox{2mm}{\multirow{2}{*}{\rotatebox[origin=c]{90}{Lowest}}}}  & \multicolumn{1}{c|}{Satoshis}  & 131                                 & 656                                   & 1344  & 2689  & 274   & 1371  & 2808  & 5615  \\
        \multicolumn{1}{l|}{}                                                                 & \multicolumn{1}{c|}{Euros}     & 0.021                               & 0.104                                 & 0.212 & 0.425 & 0.043 & 0.217 & 0.444 & 0.887 \\ \hline
        \multicolumn{1}{l|}{\parbox{2mm}{\multirow{2}{*}{\rotatebox[origin=c]{90}{Highest}}}} & \multicolumn{1}{c|}{Satoshis}  & 391                                 & 1954                                  & 4001  & 8002  & 823   & 4113  & 8423  & 16847 \\
        \multicolumn{1}{l|}{}                                                                 & \multicolumn{1}{c|}{Euros}     & 0.062                               & 0.309                                 & 0.632 & 1.264 & 0.130 & 0.650 & 1.331 & 2.662
    \end{tabular}
\end{table}
\end{document}

預先感謝您的幫忙。

此致

答案1

我建議調換桌子。透過從 10 列切換到 6 列,表格變得更窄。更重要的是,掃描一列並查看數字如何變化變得更加容易。我也是它的忠實粉絲書本標籤包,建議無情地刪除線條。最後,介紹一下列類型西尤尼克斯包允許數字沿小數點對齊。

\documentclass{article}
\usepackage{booktabs}
\usepackage{siunitx}

\begin{document}
\begin{table}
    \begin{tabular}{l S[table-format=4.0] S[table-format=4.0] S[table-format=1.3] S[table-format=5.0] S[table-format=1.3]  }\toprule
    & {Size (MB)} & \multicolumn{2}{c}{Lowest} & \multicolumn{2}{c}{Highest} \\
    && {Satoshis} & {Euros} & {Satoshis} & {Euros} \\\midrule
    Powerlaw & 100 & 131 & 0.021 & 391 & 0.062 \\\
    Model & 500 & 656 & 0.104 & 1954 & 0.309 \\
    & 1024 & 1344 & 0.212 & 4001 & 0.632 \\
    & 2048 & 2689 & 0.425 & 8002 & 1.264 \\\addlinespace
    Exponential & 100 & 274 & 0.043 & 823 & 0.130 \\
    Model & 500 & 1371 & 0.217 & 4113 & 0.650 \\
    & 1024 & 2808 & 0.444 & 8423 & 1.331 \\
    & 2048 & 5615 & 0.887 & 16847 & 2.662 \\\bottomrule
    \end{tabular}
\end{table}
\end{document}

程式碼輸出

相關內容