我曾经看到过与此类似的问题:
但是,我不想调整表格大小以使其适合页面宽度(我已经这样做了,而没有将其转换为图像),我想缩小表格的高度以使其不占用两页(或更多)。
我看到了一些可能的解决方案,longtable
但是他们将我的表分成了两份,而我不想要这样。
\resizebox
我是否被迫使用包中的功能将我的表格转换为图像graphicsx
,或者我还有其他选择?
答案1
\resizebox
虽然此命令由软件包提供,但您不必使用图像中的长表格进行转换graphicx
。表格仍将是一个表格。
您可以使用此命令定义调整大小后的表格的宽度和/或高度。请注意,固定两个尺寸时字体可能不会按比例缩小,因此通常最好保留一个尺寸{!}
。
您还可以减少垂直间距,\arraystretch
尽可能减少字体,并且可以使用另一种字体来\tiny
稍微改变字体比例。
垂直线总是令人讨厌,但在这种情况下,出于同样的原因,水平线也同样令人讨厌,特别是当\arraystretch
减少时,标题行和底线除外。该包booktabs
可以很好地完成这项任务。用这个最小的工作示例进行实验:
\documentclass{article}
\usepackage{graphicx,booktabs}
\begin{document}
\centering
{\tiny\renewcommand{\arraystretch}{.8}
\resizebox{!}{.35\paperheight}{%
\begin{tabular}{ccccc}
\toprule
11 & 12 & 13 & 14 & 15\\
\midrule
21 & 22 & 23 & 24 & 25\\
31 & 32 & 33 & 34 & 35\\
41 & 42 & 43 & 44 & 45\\
51 & 52 & 53 & 54 & 55\\
61 & 62 & 63 & 64 & 65\\
71 & 72 & 73 & 74 & 75\\
81 & 82 & 83 & 84 & 85\\
91 & 92 & 93 & 94 & 95\\
101 & 102 & 103 & 104 & 105\\
111 & 112 & 113 & 114 & 115\\
121 & 122 & 123 & 124 & 125\\
131 & 132 & 133 & 134 & 135\\
141 & 142 & 143 & 144 & 145\\
151 & 152 & 153 & 154 & 155\\
161 & 162 & 163 & 164 & 165\\
171 & 172 & 173 & 174 & 175\\
181 & 182 & 183 & 184 & 185\\
191 & 192 & 193 & 194 & 195\\
201 & 202 & 203 & 204 & 205\\
211 & 212 & 213 & 214 & 215\\
221 & 222 & 223 & 224 & 225\\
231 & 232 & 233 & 234 & 235\\
241 & 242 & 243 & 244 & 245\\
251 & 252 & 253 & 254 & 255\\
261 & 262 & 263 & 264 & 265\\
271 & 272 & 273 & 274 & 275\\
281 & 282 & 283 & 284 & 285\\
291 & 292 & 293 & 294 & 295\\
301 & 302 & 303 & 304 & 305\\
311 & 312 & 313 & 314 & 315\\
321 & 322 & 323 & 324 & 325\\
331 & 332 & 333 & 334 & 335\\
341 & 342 & 343 & 344 & 345\\
351 & 352 & 353 & 354 & 355\\
361 & 362 & 363 & 364 & 365\\
371 & 372 & 373 & 374 & 375\\
381 & 382 & 383 & 384 & 385\\
391 & 392 & 393 & 394 & 395\\
401 & 402 & 403 & 404 & 405\\
411 & 412 & 413 & 414 & 415\\
421 & 422 & 423 & 424 & 425\\
431 & 432 & 433 & 434 & 435\\
441 & 442 & 443 & 444 & 445\\
451 & 452 & 453 & 454 & 455\\
461 & 462 & 463 & 464 & 465\\
471 & 472 & 473 & 474 & 475\\
481 & 482 & 483 & 484 & 485\\
491 & 492 & 493 & 494 & 495\\
501 & 502 & 503 & 504 & 505\\
\bottomrule
\end{tabular}}}
\end{document}
请注意,有些像:
\resizebox{!}{\textheight}{ ...}
不会产生一个表格只要文字高度就行,因为你这里定义的只是框的高度,但是在星号形式中,它指的是高度+深度,也就是:
\resizebox*{!}{\textheight}{ ...}
将使表格的长度达到\textheight
(上面的 MWE 中的 556.4pt)。
graphicx
您可以使用的另一个命令是来自同一包的命令\scalebox
。这里的问题是,您必须对缩放比例有所了解,或者尝试缩放值直到获得所需的值。要测试它,只需在 MWE 中将命令替换\resizebox
为:
\scalebox{3}[2.2]{...}
编辑:您评论中的“Dimension too large”错误是表格设计的问题,而不是命令的问题\resizebox
。LaTeX 无法在 l
eft、r
ight 和c
confirmed 列内换行。对于包含长文本的列,您必须在环境中使用p{width}
或 列。另一个选项是环境的、、列或环境的 列。这些环境需要同名的包和表格的总宽度作为第一个参数。例如:m{width}
tabular
L
C
R
tabulary
X
tabularx
\usepackage{tabulary}
...
\begin{tabulary}{\linewidth}{RCLL}
...
\end{tabulary}
我更改了您的代码,使其与使用不同字体、颜色和对齐方式的自定义列一起使用tabularx
。我还添加了行颜色以避免垂直线和大多数水平线,其余部分使用包中的颜色booktabs
而不是\hline
。这是结果:
\documentclass[a4paper]{article}
\usepackage{microtype}
\usepackage[margin=2.54cm]{geometry}
\usepackage{graphicx,booktabs,tabularx}
\usepackage[table]{xcolor}
\newcolumntype{R}{>{\leavevmode\color{magenta!70!black}\ignorespaces\sffamily\bfseries}p{2.5cm}}%
\newcolumntype{H}{>{\leavevmode\color{orange!30!black}\ignorespaces\raggedright\arraybackslash\sffamily}X}%
\newcolumntype{J}{>{\leavevmode\color{green!30!black}\ignorespaces\sffamily}X}%
\newcolumntype{W}{>{\leavevmode\color{blue!30!black}\ignorespaces\raggedleft\arraybackslash\sffamily}X}%
\rowcolors{2}{purple!05}{olive!05}
\begin{document}
\centering
{\resizebox*{\textwidth}{\textheight}{%
\renewcommand{\arraystretch}{2}
\begin{tabularx}{\textwidth}{RHJW}
\toprule\rowcolor{white}
& \textbf{Hibernate OGM} & \textbf{EclipseLink NoSQL} & \textbf{DataNucleus}\\\midrule
Goal & Complement JPA with NoSQL, key-value stores & Integrates in the father project main goal of providing a complete persistence solution & Being a standards compliant and efficient JPA and JDO platform\\
NoSQL and Datastores supported & Infinispan, EHCache, MongoDB & MongoDB, Oracle NoSQL, Oracle AQ, JMS, XML files & Google Big Table, MongoDB, Cassandra, Excel, OOXML, ODF, XML, HBase, AppEngine/DataStore, Neo4j, JSON, Amazon S3, GoogleStorage, LDAP, NeoDatis, db4o\\
Operations supported & Object Oriented queries (JP-QL), CRUD of entities, Polymorphic entities, Embeddable objects, Basic types (partial), Unidirectional and Bidirectional relationships (partial), Collections, Hibernate Search queries, JPA and Hibernate ORM API & Object Oriented Queries, Polymorphic entities, Basic types, Unidirectional relationships, Collections, JPA (partial), Complex hierarchical, Indexed hierarchical data, Mapped hierarchical data, CRUD operations, Embedded objects and collections, Inheritance, Subset of JP-QL and Criteria API, Denormalization & CRUD operations, Embedded objects and collections, Inheritance, Relationships (Unidirectional and Bidirectional), Queries for JP-QL, JDOQL and SQL (partial), Basic types, Joins.\\
No support for & Denormalization, Complex joins and aggregations & Joins & Aggregations? (not specified in documentation)\\
Future & High performance sequence generator, parallel key fetching, support for Map/Reduce, more NoSQL classes, better mixing of NoSQL and RDBMS & ? & JPA2.1 full feature list, Official support for Cassandra, Considering a plugin for REDIS\\
Commercial support & Red Hat & Oracle (via TopLink) & Supported by DataNucleus team\\
Documentation & Scattered, inactive forums, official documentation lacking & Bureaucratic forums, information is complete and gathered mainly in the official website & Active forums, acceptable official documentation, but the big advantage comes from user support in form of blogs and posts scattered around the Internet\\\bottomrule
\end{tabularx}}}
\end{document}