直接把\begin{tikzpicture} ,這部分内容放在表格裡就好了。
如下圖,把原點放入第三格中。
Tikz圖形代碼:
\begin{tikzpicture}[scale=1.2]
\fill[brown] (1ex,0ex) circle (1.2ex);
\end{tikzpicture}
表格代碼:
\begin{table}
\centering
\begin{tabular}{m{1.2cm}m{1.2cm}m{7cm}}
\multirow{3}{*}{{\large \textbf{AAA}}} & \textbf{一} &
\begin{tikzpicture}[scale=1.2]
\fill[brown] (1ex,0ex) circle (1.2ex);
\end{tikzpicture}
\\
& \textbf{二} &
\begin{tikzpicture}[scale=1.2]
\fill[brown] (1ex,0ex) circle (1.2ex);
\end{tikzpicture}
\\
& \textbf{三} &
\begin{tikzpicture}[scale=1.2]
\fill[brown] (1ex,0ex) circle (1.2ex);
\end{tikzpicture}
\end{tabular}
\end{table}
效果