我有一份两列文档,需要并排显示两个表格,标题在页边距中。我遇到了难题——我使用table*
浮动来跨越两列,一个图形,然后minipages
在图形内部构造表格。
这可行,但是如何让边距文本与浮动表格并排?另外,是否可以使用,caption
以便我可以在文档主体中使用\Cref
它?label
\documentclass[
a4paper,
11pt,
twoside,
twocolumn]{article}
\usepackage[
top=2cm,
bottom=3cm,
hmarginratio=4:1]{geometry}
\usepackage{booktabs}
\usepackage{lipsum}
\begin{document}
\lipsum[9]
\begin{table*}[tbp]
\centering
\begin{minipage}[t]{.45\linewidth}
\centering
\begin{tabular}{rr}
\toprule
\textbf{Reported FPS} & \textbf{Count} \\
\midrule
$12$ & $1646$ \\
$14$ & $25$ \\
\bottomrule
\end{tabular}
\caption{Lorem ipsum dolor sit amet, consectetur adipiscing elit.}
\end{minipage}%
%
\hskip2em\relax
\begin{minipage}[t]{.45\linewidth}
\centering
\begin{tabular}{ccr}
\toprule
\textbf{Dimensions} & \textbf{Standard} & \textbf{Count} \\
\midrule
$352\times288$ & CIF & $129$\\
$360\times288$ & -- & $560$ \\
\bottomrule
\end{tabular}
\end{minipage}%
\end{table*}
\marginpar{
\begin{minipage}{35mm}
\raggedright \emph{\textbf{
Table 2. Suspendisse vitae erat vitae ante aliquam condimentum.}}
\end{minipage}
}
\end{document}