根据标题,我希望在页面底部的双列式文档中插入一个宽表。我找到了package
stfloats
。但是,table*
将放置在脚注下方,并且
\usepackage[bottom]{footmisc}
帮助过我。
我的MWE
\documentclass[a4paper,9pt]{article}
\usepackage[margin=1.5cm, top=1.5cm, bottom=1.2cm]{geometry}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{stfloats}
\usepackage[bottom]{footmisc}
\let\endtitlepage\relax
\usepackage{lipsum}
\begin{document}
\twocolumn[%
\author{Me}%
\title{My title}%
\maketitle%
]
\section{One}\indent
\lipsum[1-2]\footnote{footnote1}
\section{Two}\indent
\lipsum[3-4]
\section{Three}\indent
\lipsum[5]
\lipsum[6]
\lipsum[7]\footnote{footnote2}
\lipsum[8]
\begin{table*}[b!]
\centering
\caption{Some caption}
\begin{tabular}{lrrrrrrrrr}
\hline
Name & Terhelés & $HV_{mean}$ & $\Delta_{AVG}$ & $\delta_{AVG}$ & db & SD & $\Delta$ & $\delta$ & IQR \\
NA1-es & 10 g & 170.7 & 5.6 & 3.3\% & 19 & 15.4 & 21.0 & 12.3\% & 20.0 \\
NA1-ss & 10 g & 259.4 & 14.0 & 5.4\% & 14 & 24.3 & 38.3 & 14.8\% & 31.7 \\
NA8-es & 10 g & 177.2 & 13.3 & 7.5\% & 5 & 22.6 & 35.9 & 20.3\% & 39.8 \\
NA8-ss & 10 g & 318.6 & 25.1 & 7.9\% & 8 & 20.1 & 45.1 & 14.2\% & 0.0 \\
NA13-es & 10 g & 221.5 & 20.6 & 9.3\% & 4 & 22.4 & 43.0 & 19.4\% & 30.4 \\
NA13-ss & 10 g & 389.5 & 47.6 & 12.2\% & 4 & 9.2 & 56.8 & 14.6\% & 5.6 \\
\hline
\end{tabular}
\end{table*}
\section{Four}\indent
\lipsum[10]\footnote{footnote3}
\lipsum[11]
\end{document}
有人知道解决办法吗?