今天作一个martix 结果页面过宽 想看看怎么设置layout, 让页面横着

Page Orientation

\usepackage[a4paper,landscape]{geometry}

然后是页面margin的设置 同样是用这个包
 \usepackage[a4paper,landscape,top=80px, bottom=80px, left=80px, right=80px]{geometry}

latex基本上的页面设置都是应该是用这个包完成的 geometry

Table 的问题 基本结构是这样
\begin{table}
\large{
\begin{tabular}{|l||l|l|}
\hline
a&a&a\\
\hline
\end{tabular}
}
\caption{}
\end{table}

字体问题: 设置全局 最大就是12pt了。
局部改:
Command Nominal Point Size Exact Point Size
\tiny 5 5
\scriptsize 7 7
\footnotesize 8 8
\small 9 9
\normalsize 10 10
\large 12 12
\Large 14 14.40
\LARGE 18 17.28
\huge 20 20.74
\Huge 24 24.88
n181