我想ruledtabular
在我目前正在写的书中使用该环境。
\begin{table}
\caption{\label{tab:table1} ...}
\begin{ruledtabular}
\begin{tabular}{ccccc}
...
\end{tabular}
\end{ruledtabular}
\end{table}
问题是我不想一开始就
\documentclass[preprint,...]{revtex4-1}
但与正常情况
\documentclass{book}
有没有办法做类似的事情
\usepackage{revtex4-1}
?
答案1
根据 REVTeX 4.1 指南,的两个主要功能ruledtabular
是双规则和页面宽表。这可以通过\hline
连续使用两个 -s 和tabularx
包裹:
\documentclass{article}
\usepackage{tabularx}
\begin{document}
\begin{table}
\caption{Something}
\begin{tabularx}{\textwidth}{XX}
\hline\hline
Some & content \\
\hline\hline
\end{tabularx}
\end{table}
\end{document}
我个人认为,从印刷的角度来看,这两个功能充其量也值得怀疑。我建议阅读booktabs
包装文档以实现良好的表格排版实践。