私の表の内部footnote
は最初の表セクションの幅に制限されているようですが、それを拡張して表全体の幅を占める方法を探しています。
私のドキュメントはスタイルでフォーマットされておりtwo-column
、table*
環境を使用して表をページ幅全体に拡張しています。この構造内で、2 つの表セクションを並べて 2 つの個別の表を形成しています。また、threeparttable
パッケージを使用して表の注釈を組み込んでいます。
提供されたコードは、下の図の出力を生成します。脚注を拡張して、赤で強調表示されたすべての空白部分を網羅したいと考えています。
\documentclass[twocolumn]{article}
\usepackage{graphicx} % Required for inserting images
\usepackage{booktabs}
\usepackage{tabularx}
\usepackage{threeparttable}
\usepackage{makecell}
\usepackage{colortbl}
\usepackage{amsmath}
\usepackage{lipsum} % For dummy text; you can remove this in your actual document
\usepackage{geometry} %margins of the document
\geometry{
a4paper,
total={170mm,257mm},
left=20mm,
top=20mm,
}
\usepackage{showframe} % to show page margins
\title{two_colums_two_columns}
\author{alexyshr }
\date{January 2024}
\begin{document}
\definecolor{light-gray}{gray}{0.95}
\section{Introduction}
\lipsum[1-2]
\addtolength{\tabcolsep}{-5pt} %reduce default column separation
\begin{table*}[hbt!] %table* will expand the table to all the space available
\caption{SOF Metrics. All providers. Florida Power Grid - PG}
\centering
\fontsize{7}{9}\selectfont
\begin{threeparttable}
\begin{tabular}[t]{>{}clcccccc}
\toprule
& \textbf{County} & \textbf{\makecell[c]{SOF\\MERS$^\dagger$}} & \textbf{\makecell[c]{SOF\\MERA$^\ast$}} & \textbf{$\beta_0^\ddagger$} & \textbf{$\beta_1^\S$} & \textbf{$\#^\P$} & \vphantom{1} \textbf{\makecell[c]{Risk\\Ratio}}\\
\midrule
\em{1} & OSCEOLA & 46.0 & 0.511 & -7.176 & 0.156 & 10 & 0.720\\
\em{2} & HILLSBOROUGH & 45.0 & 0.500 & -7.003 & 0.156 & 10 & 0.736\\
\em{3} & SUMTER & 44.7 & 0.497 & -8.823 & 0.197 & 10 & 0.740\\
\em{4} & PALM BEACH & 43.9 & 0.488 & -10.656 & 0.243 & 10 & 0.754\\
\em{5} & MIAMI-DADE & 43.6 & 0.484 & -9.377 & 0.215 & 10 & 0.760\\
\bottomrule
\end{tabular}
\begin{tablenotes}[para]
\item[$\ast$] \text{$\equiv$ SOF-MERS: Multi-Event median Robustness wind Speed; }
\item[$\dagger$] \text{$\equiv$ SOF-MERA: Multi-Event Robustness Area.}
\item[$\ddagger$] \text{$\equiv$ Intercept; }
\item[$\S$] \text{$\equiv$ Slope; }
\item[$\P$] \text{$\equiv$ Number of Hurricane Events.}
\end{tablenotes}
\end{threeparttable}
\centering
\begin{tabular}[t]{clcccccc}
\toprule
\em{ } & \textbf{County} & \textbf{\makecell[c]{SOF\\MERS$^\dagger$}} & \textbf{\makecell[c]{SOF\\MERA$^\ast$}} & \textbf{$\beta_0^\ddagger$} & \textbf{$\beta_1^\S$} & \textbf{$\#^\P$} & \textbf{\makecell[c]{Risk\\Ratio}}\\
\midrule
\em{35} & HAMILTON & 32.3 & 0.359 & -7.244 & 0.224 & 10 & 1.024\\
\em{36} & DIXIE & 32.2 & 0.358 & -10.633 & 0.330 & 10 & 1.027\\
\em{37} & PUTNAM & 32.2 & 0.357 & -9.266 & 0.288 & 10 & 1.030\\
\em{38} & FLAGLER & 32.0 & 0.356 & -9.695 & 0.303 & 10 & 1.033\\
\em{\cellcolor{light-gray}{\textbf{$>>$}}} & \cellcolor{light-gray}{\textbf{ALL}} & \cellcolor{light-gray}{\textbf{33.1}} & \cellcolor{light-gray}{\textbf{0.368}} & \cellcolor{light-gray}{\textbf{-7.776}} & \cellcolor{light-gray}{\textbf{0.235}} & \cellcolor{light-gray}{\textbf{683}} & \cellcolor{light-gray}{\textbf{1.000}}\\
\bottomrule
\end{tabular}
\end{table*}
\lipsum[3-15]
%return to normal column separation
\addtolength{\tabcolsep}{1pt}
\end{document}
答え1
両方の小さいtabular
環境を「外側の」2 列tabular
環境に囲み、「外側の」表形式の環境をテキスト ブロックの全幅に広げることをお勧めします。次に、環境がこの「外側の」表形式の環境を囲んでいることを確認しますthreeparttable
。
また、パッケージをロードし、両方の内部環境の列にsiunitx
そのS
列タイプを使用して、小数点の数字を揃え、適切な数学マイナス記号を取得します。$\beta_0$
tabular
ちなみに、太字ヘッダー行のセル。
\documentclass[twocolumn]{article}
\usepackage{graphicx} % Required for inserting images
\usepackage{booktabs}
\usepackage[para]{threeparttable}
\usepackage{makecell}
\usepackage{colortbl,xcolor}
\definecolor{light-gray}{gray}{0.9}
\usepackage{amsmath}
\usepackage{lipsum} % For dummy text; you can remove this in your actual document
\usepackage{geometry} %margins of the document
\geometry{a4paper, total={170mm,257mm}, margin=20mm}
\usepackage{siunitx} % for 'S' column type
%\usepackage{showframe} % to show page margins
\begin{document}
\section{Introduction}
\lipsum[1-2]
\begin{table*}
\setlength{\tabcolsep}{3pt} % default: 6pt
\footnotesize
\caption{SOF Metrics. All providers. Florida Power Grid -- PG}
\smallskip
\begin{threeparttable}
% "outer" table
\begin{tabular}{@{}cc@{}}
% first "inner" table
\begin{tabular}{@{} >{\em}l l cc S[table-format=-1.3] ccc @{}}
\toprule
& County
& \makecell{SOF\\MERS\tnote{\textdagger}}
& \makecell{SOF\\MERA\tnote{\textasteriskcentered}}
& {$\beta_0$\tnote{$\ddagger$}}
& $\beta_1$\tnote{\S}
& \#\tnote{\P}
& \makecell{Risk\\Ratio}\\
\midrule
1 & OSCEOLA & 46.0 & 0.511 & -7.176 & 0.156 & 10 & 0.720\\
2 & HILLSBOROUGH & 45.0 & 0.500 & -7.003 & 0.156 & 10 & 0.736\\
3 & SUMTER & 44.7 & 0.497 & -8.823 & 0.197 & 10 & 0.740\\
4 & PALM BEACH. & 43.9 & 0.488 & -10.656 & 0.243 & 10 & 0.754\\
5 & MIAMI-DADE & 43.6 & 0.484 & -9.377 & 0.215 & 10 & 0.760\\
\bottomrule
\end{tabular} % end of first "inner" table
\hspace{5pt}
% second "inner" table
\begin{tabular}{@{\hspace{2pt}} >{\em}l l cc S[table-format=-1.3] ccc @{\hspace{2pt}}}
\toprule
& County
& \makecell{SOF\\MERS\tnote{\textdagger}}
& \makecell{SOF\\MERA\tnote{\textasteriskcentered}}
& {$\beta_0$\tnote{$\ddagger$}}
& $\beta_1$\tnote{\S}
& \#\tnote{\P}
& \makecell{Risk\\Ratio}\\
\midrule
35 & HAMILTON & 32.3 & 0.359 & -7.244 & 0.224 & 10 & 1.024\\
36 & DIXIE & 32.2 & 0.358 & -10.633 & 0.330 & 10 & 1.027\\
37 & PUTNAM & 32.2 & 0.357 & -9.266 & 0.288 & 10 & 1.030\\
38 & FLAGLER & 32.0 & 0.356 & -9.695 & 0.303 & 10 & 1.033\\
\rowcolor{light-gray}
& ALL & 33.1 & 0.368 & -7.776 & 0.235 & 683 & 1.000\\
\bottomrule
\end{tabular}\null
\end{tabular} % end of "outer" tabular
\smallskip
\begin{tablenotes}
\item[\textdagger] SOF-MERS: Multi-Event median Robustness wind Speed;
\item[\textasteriskcentered] SOF-MERA: Multi-Event Robustness Area;
\item[$\ddagger$] Intercept;
\item[\S] Slope;
\item[\P] Number of Hurricane Events.
\end{tablenotes}
\end{threeparttable}
\end{table*}
\lipsum[3-15]
\end{document}