区切りの & だけを入力すると、表に空欄を作ることができる。
例
\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
関連記事
テキストの下線に色を付けたい場合には、color, soul パッケージを使用する。 そして、下線をつけたいテキストを\ul で囲む。 例 \usepackage{color, soul} \begi …
tex で文中の文字に \textcolor で色をつける方法
color パッケージを使っておき、本文中 \textcolor で色をつける。 例 \usepackage{color} \begin{document} {\bf \textcolor{red}{ …
ゼロの成分が多いブロック行列を tex で出力する。 \usepackage{amsmath} を使う。 例 \usepackage{amsmath} \begin{document} $$ \lef …
2023/01/18
matplotlib のグラフ作成と gnuplot との対応 比較
2022/10/14
pythonで配列(リスト)の、ある要素がわかっているときにその次の要素を取得する方法。