Tufte 类:强制将标题置于表格下方

Tufte 类:强制将标题置于表格下方

我正在使用 tufte-class 写报告。我有一些大小合适的表格,单元格中有文本,表格足够大,可以放入页边距。这对我来说没问题。但是,标题的页边距位置“挤占”了宽表格,因此不适合页面。

我可以强制将标题置于表格下方,不换行,让表格本身充分利用整个页面吗?

\documentclass[nobib,american,justified, notoc, symmetric]{tufte-book}
\usepackage{caption}
\usepackage{babel}
\usepackage[pangram]{blindtext}

\begin{document}

\begin{table}[]
\centering
\caption{Some awesome table we have here. Why am I inside the table float?}
\setfloatalignment{b}% aligns to bottom
\begin{tabular}{|p{2.9cm}|p{4.1cm}|p{3.8cm}|p{4.6cm}|}
\hline
\textbf{a} & \textbf{b} & \textbf{c} & \textbf{d} \\ \hline
\Blindtext[1][1] & \Blindtext[1][1] & \Blindtext[1][1] & \Blindtext[1][1] \\ \hline
\Blindtext[1][1] & \Blindtext[1][1] & \Blindtext[1][1] & \Blindtext[1][1] \\ \hline
\Blindtext[1][1] & \Blindtext[1][1] & \Blindtext[1][1] & \Blindtext[1][1] \\ \hline
\Blindtext[1][1] & \Blindtext[1][1] & \Blindtext[1][1] & \Blindtext[1][1] \\ \hline
\end{tabular}
\end{table}


\end{document}

相关内容