tabularx 和rotatebox:頁面垂直置中

tabularx 和rotatebox:頁面垂直置中

我有一個 tabularx 表,已使用rotatebox將其旋轉90度,包含在圖中。

有些東西阻止 LaTeX 將圖形置於頁面中心:它是關閉,但距離頁面頂部稍微太遠了。

有人知道這是怎麼回事?任何幫助將不勝感激。

微量元素:

\documentclass[11pt, a4paper]{book}
\usepackage{pifont,tabularx,adjustbox,booktabs}

\begin{document}

\begin{figure}
    \newcolumntype{R}[2]{%
    >{\adjustbox{angle=#1,lap=\width-(#2)}\bgroup}%
    l%
    <{\egroup}%
}
\newcommand*\rot{\multicolumn{1}{R{30}{1em}}}
\newcommand*\sq{\mathbin{\vcenter{\hbox{\rule{.2ex}{.2ex}}}}}

\scriptsize
\rotatebox[origin=bl]{90}{
\begin{tabularx}{\textwidth}{lcccccccccccccccccccc}
& \multicolumn{18}{c}{\textsc{Data 1}}\\
 & \rot{Name A} & \rot{Name B} & \rot{Name C} & \rot{Name D} & \rot{Name E} & \rot{Name F} & \rot{Name G} & \rot{Name H} & \rot{Name I} & \rot{Name J} & \rot{Name K} & \rot{Name L} & \rot{Name M} & \rot{Name N} & \rot{Name O} & \rot{Name P} & \rot{Name Q} & \rot{Name R} & \\
\cmidrule{2-20}
\textsc{Data 2} & & & & & & & & & & & & & & & & & & & \\
Name S & $\sq$ & $\sq$ & $\sq$ & $\sq$ & $\sq$ & $\sq$ & $\sq$ & $\sq$ & $\sq$ & $\sq$ & $\sq$ & $\sq$ & $\sq$ & $\sq$ & $\sq$ & $\sq$ & $\sq$ & \ding{51} & \\
\end{tabularx}
}
    \caption{This is a caption.}
\end{figure}

\end{document}

答案1

你的桌子比 寬\textwidth。但是,只有使用列說明符時, tabularx 才有意義X

\documentclass[11pt, a4paper]{book}
\usepackage{pifont,tabularx,adjustbox,booktabs}
\usepackage{showframe}

\begin{document}

\begin{figure}
    \newcolumntype{R}[2]{%
            >{\adjustbox{angle=#1,lap=\width-(#2)}\bgroup}%
            l%
            <{\egroup}%
        }
        \newcommand*\rot{\multicolumn{1}{R{30}{1em}}}
        \newcommand*\sq{\mathbin{\vcenter{\hbox{\rule{.2ex}{.2ex}}}}}
        \scriptsize\centering
        \rotatebox[origin=bl]{90}{%
            \begin{tabular}{lcccccccccccccccccccc}
                & \multicolumn{18}{c}{\textsc{Data 1}}\\
                & \rot{Name A} & \rot{Name B} & \rot{Name C} & \rot{Name D} & \rot{Name E} & \rot{Name F} & 
                \rot{Name G} & \rot{Name H} & \rot{Name I} & \rot{Name J} & \rot{Name K} & \rot{Name L} & 
                \rot{Name M} & \rot{Name N} & \rot{Name O} & \rot{Name P} & \rot{Name Q} & \rot{Name R} & \\
                \cmidrule{2-20}
                \textsc{Data 2} & & & & & & & & & & & & & & & & & & & \\
                Name S & $\sq$ & $\sq$ & $\sq$ & $\sq$ & $\sq$ & $\sq$ & $\sq$ & $\sq$ & $\sq$ & $\sq$ & 
                $\sq$ & $\sq$ & $\sq$ & $\sq$ & $\sq$ & $\sq$ & $\sq$ & \ding{51} & \\
            \end{tabular}%
        }
        \caption{This is a caption.}
    \end{figure}

\end{document}

在此輸入影像描述

相關內容