我想在LaTeX中将文本与大图像的中心对齐。遗憾的是,文字some text
与图片底部对齐:
\begin{tabular}{cc}
some text & \includegraphics{image_name.eps}
\end{tabular}
我发现一个网站建议在表格中使用m{width of the cell}
代替c
,但它没有用。
\begin{tabular}{m{1in}c}
some text & \includegraphics{image_name.eps}
\end{tabular}
我确信乳胶专业人员会看到这个,知道该怎么做!这意味着在你教我之前我不能成为一名LaTeX专业人士......
答案 0 :(得分:5)
您可以使用小型号将文字与图片对齐:
\begin{minipage}[c]{0.25\textwidth}
Text comes here
\end{minipage}
\begin{minipage}[c]{0.25\textwidth}
\includegraphics{image_name.eps}
\end{minipage}
它实际上不是一个表,你必须指定小型号的宽度,但它可能适合你。