LaTeXにおける表作成の基本と応用
表環境の定義
tabularとtabular*は類似していますが、tabular*は幅調整が可能です。
\begin{tabular}[position]{columns}
rows
\end{tabular}
\begin{tabular*}{width}[position]{columns}
rows
\end{tabular*}
表をページ中央に配置するにはcenter環境を使用します。
\begin{center}
table contents
\end{center}
表環境のパラメータ
位置指定パラメータ(垂直方向) ...
6月11日 19:27 投稿