Tabularxで\makecellを使用できますか

Tabularxで\makecellを使用できますか

なぜ \makecell が使用できないのかわかりません。基本的に、そこにコンテンツ センターを置きたいだけです。これが私の生活を非常に困難にしています。

ここに画像の説明を入力してください

\documentclass[12pt,oneside]{book}

\usepackage[showframe]{geometry}
\usepackage{amsmath}
\usepackage{ragged2e}
\usepackage{makecell, multirow, tabularx}
\renewcommand\theadfont{\small\bfseries} % for bold in table using \small
\renewcommand\theadgape{}
\usepackage[svgnames, table]{xcolor}
\usepackage{hhline, boldline}
\usepackage{seqsplit, caption} %for table spacing to second row
\usepackage{booktabs, ragged2e} % Use booktabs rules and get rid of vertical rules, ragged2e to ragged text
\usepackage{siunitx} %for table spacing to second row
\usepackage{threeparttable} %to add footnote below table
\usepackage{tabulary}


\begin{document}

\begin{table}[h!]
\centering
\begin{threeparttable} 
\begin{tabularx}{\textwidth}{>{\RaggedRight\arraybackslash}Xlcccc}  % Changed from c to X, or remove >{} and change to `l`column.
\toprule
    &  & {\textbf{N}} 
    &  {\textbf{Mean Rank}} 
    &  {\makecell{\textbf{Sum of}\\ \textbf{Ranks}}}  
    % & \multicolumn{1}{>{\centering\arraybackslash}p{8em}}{\textbf{BCa 95\% Confidence Interval of the Difference}}  
    \\
\midrule
\multirow{2.5}{*}{\makecell{\textit{AAaaaa Example Dataset}} \\ (AA) - \\ {\textit{AAaaaa Example Dataset}} \\ (BB) }
    & Negative Ranks
    & 55\tnote{a}
    & 2.50
    & 34.00 \\
& Positive Ranks & 0\tnote{b} & 0.00 & 0.00 \\
& Ties & 0\tnote{c} & \\
& Total & 10 \\
    \bottomrule
\end{tabularx}
\footnotesize 
\end{threeparttable}
\end{table}

\end{document}

答え1

あなたの質問を理解する限り、makecell複数行のセルには必要ありません。再定義するだけです。また、列ヘッダーの場合、\thead代わりに以下を使用します\makecel

\documentclass[12pt,oneside]{book}
\usepackage[showframe]{geometry}
\usepackage[svgnames, table]{xcolor}
\usepackage{ragged2e}
\usepackage{booktabs, makecell, multirow, tabularx, threeparttable}
\renewcommand\theadfont{\small\bfseries} % for bold in table using \small
\renewcommand\theadgape{}

\begin{document}
    \begin{table}[ht]
    \centering
\begin{threeparttable}
\begin{tabularx}{\textwidth}{>{\RaggedRight\let\\ \newline}Xl cc c}  
    \toprule
    &  & \thead[b]{N}   & \thead[b]{Mean\\ Rank}    & \thead[b]{Sum of\\ Ranks}    \\
    \midrule
\multirow{4}{=}{\itshape
                  AAaaaa Example Dataset\\  
                  \normalfont
                  (AA) -\\                 
                  \itshape
                  AAaaaa Example Dataset\\                  
                  \normalfont
                  BB }
    & Negative Ranks    & 55\tnote{a}   & 2.50  & 34.00 \\
    & Positive Ranks    & 0\tnote{b}    & 0.00  & 0.00  \\
    & Ties              & 0\tnote{c}    &       &       \\
    & Total             & 10            &       &       \\
    \bottomrule
\end{tabularx}
\end{threeparttable}
    \end{table}
\end{document}

ここに画像の説明を入力してください

補遺: 列の幅を均等にし、数字を小数点で揃えたい場合があります。そのような場合は、S列指定子 (パッケージで定義siunitx) と 2 番目の列の幅を広げると、目的の結果が得られました。

ここに画像の説明を入力してください

\documentclass[12pt,oneside]{book}
\usepackage[showframe]{geometry}
\usepackage[svgnames, table]{xcolor}
\usepackage{ragged2e}
\usepackage{booktabs, makecell, multirow, tabularx, threeparttable}
\renewcommand\theadfont{\small\bfseries} % for bold in table using \small
\renewcommand\theadgape{}
\usepackage{siunitx}

\begin{document}
    \begin{table}[ht]
    \centering
    \sisetup{table-column-width=0.1\linewidth,
             table-align-text-post=false, 
             table-format=2.2}
\begin{threeparttable}
\begin{tabularx}{\textwidth}{>{\RaggedRight\let\\ \newline\hsize=1.2\hsize}X
                             >{\hsize=0.8\hsize}X  
                             S[table-format=2.0]SS}  
    \toprule
    &  & {\thead[b]{N}} & {\thead[b]{Mean\\ Rank}}  & {\thead[b]{Sum of\\ Ranks}}    \\
    \midrule
\multirow{4}{=}{\itshape
                  AAaaaa Example Dataset\\  
                  \normalfont
                  (AA) -\\                 
                  \itshape
                  AAaaaa Example Dataset\\                  
                  \normalfont
                  BB }
    & Negative Ranks    & 55\tnote{a}   & 2.50  & 34.00 \\
    & Positive Ranks    & 0\tnote{b}    & 0.00  & 0.00  \\
    & Ties              & 0\tnote{c}    &       &       \\
    & Total             & 10            &       &       \\
    \bottomrule
\end{tabularx}
\end{threeparttable}
    \end{table}
\end{document}

関連情報