我正在制作这张表作为图表,这就是我需要的样子,但要大得多。我如何更改表格本身的大小?或者有更好的方法吗?
\begin{tabular}{|c|c|c|c|c|c|}
\hline
& & & & &\\
\hline
\end{tabular}
答案1
这里有一个方法,使用tabularx
不可见的高度规则。您可以选择tabularx
环境宽度作为线宽的分数,或给定的长度。我不知道它是否必须浮动,也不知道它是否应该有标题,所以我决定不浮动,只是把它放在环境中center
:
\documentclass{article}
\usepackage{lipsum}
\usepackage{tabularx}
\begin{document}
\lipsum[1]
\begin{center}%
\begin{tabularx}{0.6\linewidth}{|*{6}{X|}}
\hline
\rule{0pt}{1cm} & & & & &\\
\hline
\end{tabularx}
\end{center}
\lipsum[23]
\end{document}
答案2
我不完全清楚你的意思,但下面的例子涵盖两种可能性。
\documentclass{article}
\usepackage{lipsum}
\usepackage{graphicx}
\begin{document}
\lipsum[1]
\begin{table}[h]\centering % this is a float, i.e. TeX can move it around
\huge
\begin{tabular}{|c|c|c|c|c|c|}
\hline
A & B & & & &\\
\hline
\end{tabular}
\end{table}
\lipsum[2]
\begin{table}[h]\centering % this is a float, i.e. TeX can move it around
\resizebox{0.5\textwidth}{!}{\begin{tabular}{|c|c|c|c|c|c|}
\hline
A & B & & & &\\
\hline
\end{tabular}}
\end{table}
\lipsum[3]
\end{document}