区切りの & だけを入力すると、表に空欄を作ることができる。
例
\begin{table} \begin{tabular}{ |c|c|c|c| } \hline 1 & & 3 \\ \hline & B & C\\ \hline \end{tabular} \end{table}
結果

雑記
投稿日:2020年11月14日 更新日:
区切りの & だけを入力すると、表に空欄を作ることができる。
\begin{table} \begin{tabular}{ |c|c|c|c| } \hline 1 & & 3 \\ \hline & B & C\\ \hline \end{tabular} \end{table}
執筆者:seyanen
関連記事
\surd で入力する。または、amssymb パッケージを使って \checkmark で入力する。 例 \usepackage{amssymb} \begin{document} $\surd \ …
tex の equation 環境で複数行の数式を入力する(\split を使う)
\equation の中で \split を使う。 \tag を使って、自分で定義した式番号を使える。 例 \begin{equation} \begin{split} a \\ b \\ c \en …
2023/01/18
matplotlib のグラフ作成と gnuplot との対応 比較
2022/10/14
pythonで配列(リスト)の、ある要素がわかっているときにその次の要素を取得する方法。