表格字体大小比 tiny 还小吗?

表格字体大小比 tiny 还小吗?

我查看了一下,有针对 LaTeX 文档的答案,但没有在 LyX 中实现它的方法。如果我有一个表格,但它不适合,有没有办法让文本大小比\tinyLyX 中更小?我使用插入 -> 浮动 -> 表格插入表格,它看起来很棒,只是有点太小了。

答案1

如果您确实想确保您的表格变得难以阅读,您可以使用该\fontsize命令将字体大小设置为您喜欢的任何大小:

\documentclass{article}
\usepackage{lmodern,blindtext}

\begin{document}
\blindtext

\begin{table}[!h]
\fontsize{4}{4}\selectfont
\begin{tabular}{lllllll}
\hline
hat & einer & gemacht zu & werden um von & Buch Wollen & unter & auch so weiter \\ \hline
\end{tabular}
\end{table}

\fontsize{1}{1}\selectfont
\Blindtext
\end{document}

最大微小度

答案2

您可以使用该graphicx包来调整框的大小:

\documentclass{article}
\usepackage[margin=1in]{geometry}
\usepackage{graphicx}
\pagestyle{empty}
\begin{document}

\noindent
\resizebox{\linewidth}{!}{%
\begin{tabular}{|c|c|c|c|c|c|c|c|c|c|}\hline
This & that & another & more & something else & and yet more & another column & more columns & more and more columns & and still much much more\\\hline
\end{tabular}}
\end{document}

语法是:

\resizebox{<horizontal width>}{<vertical height>}{<box>}

告诉!\resizebox比例缩放垂直方向与水平方向的重新缩放。

相关内容