答案1
找到解决方案了,最好分享一下。这很简单,我们只需要使用table.env = FALSE
Hmisc 的 latex 命令选项,如下所示:
\begin{table}
\centering
\caption{big table caption}
\begin{subtable}{.5\textwidth}
\centering
<<R code to do t table,echo=FALSE, results='asis'>>=
latex(t, file = "",table.env = FALSE,label="tab:t_table")
@
\caption{sub table caption}
\end{subtable}%
\begin{subtable}{.5\textwidth}
\centering
<<R code to do table r,echo=FALSE, results='asis'>>=
latex(r, file = "",table.env = FALSE,label="tab:r_table")
@
\caption{subtable caption}
\end{subtable}
\end{table}
第一个后面的 % 符号\end{subtable}
允许两个表格位于同一行。