LaTeX/command/others のバックアップ(No.3)


\( \LaTeX \)
LaTeXコマンド集その他(テキストモード)

表の基本

\begin{table}[htb]
\begin{tabular}{||c|c|c|} \hline
a & b & c \\ \hline \hline
d & e & f \\ \hline
g & h & i \\ \hline
\end{tabular}
\end{table}
table.png

[htb]の部分で位置指定。

表の中央寄せ

\begin{table}[htb]
\centering
\begin{tabular}{||c|c|c|} \hline
a & b & c \\ \hline \hline
d & e & f \\ \hline
g & h & i \\ \hline
\end{tabular}
\end{table}

表の中央寄せ・絶対位置指定

プリアンブルで宣言

\usepackage{here}

本文で使用

\begin{table}[H]
\centering
\begin{tabular}{||c|c|c|} \hline
a & b & c \\ \hline \hline
d & e & f \\ \hline
g & h & i \\ \hline
\end{tabular}
\end{table}