📐
LaTeXの表で(無理やり)上下中央揃えにする方法
LaTeX で\tabular
コマンドで表を作るときに,
\begin{tabular}{c|cc}
A&\includegraphics[width=0.2\textwidth]{a.png}\\
B&\includegraphics[width=0.2\textwidth]{b.png}\\
\end{tabular}
と書くと下の図のように文字が下付きになってしまう.
\raisebox
コマンドで文字の位置を上下方向に動かすことができる.
頑張って調節すると上下中央揃えっぽい見た目にもできる.
\begin{tabular}{c|c}
\raisebox{0.1\textwidth}{A}&\includegraphics[width=0.2\textwidth]{a.png}\\
\raisebox{0.03\textwidth}{B}&\includegraphics[width=0.2\textwidth]{b.png}\\
\end{tabular}
Discussion