由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
TeX版 - 如何在table里面插入图?
相关主题
latex单栏文档中如何双栏显示图片请看代码,如何调整上下两个图的距离?
图表混排的问题a bulleted list in a table?
插图问题如何让一个table和picture永远在一起
how to insert a image in a cell of a table?add caption above floating table using floatflt
how to use longtable in latex?请问tabular里面的一个格子里如何能够换行呢?谢谢!
急问一表格问题Table 的黑粗线是怎么弄出来的?
graph questionlatex 表格自动排版的问题
插图问题请教图片排版问题
相关话题的讨论汇总
话题: tabular话题: begin话题: end话题: table话题: 插入
进入TeX版参与讨论
1 (共1页)
F**p
发帖数: 1046
1
table里面可不可以插入图片?我直接把文字替换成 \includegraphics, 好像不work.
自己顶一下吧:
一个简单的table:
\begin{tabular}{|c|c|}
1 & 2 \\
3 & 4 \\
\end{tabular}
插入一个简单的图片:
\begin{tabular}{|c|c|}
\includegraphics[width=0.25\linewidth]{Fig/fig123.eps} & 2 \\
3 & 4 \\
\end{tabular}
我原来加上了\begin{figure} \end{figure}, 始终也compile不过。
N**D
发帖数: 10322
2
try
\begin{minipage}
\end{minipage}
(I didn't try it)

【在 F**p 的大作中提到】
: table里面可不可以插入图片?我直接把文字替换成 \includegraphics, 好像不work.
: 自己顶一下吧:
: 一个简单的table:
: \begin{tabular}{|c|c|}
: 1 & 2 \\
: 3 & 4 \\
: \end{tabular}
: 插入一个简单的图片:
: \begin{tabular}{|c|c|}
: \includegraphics[width=0.25\linewidth]{Fig/fig123.eps} & 2 \\

l**e
发帖数: 6
3
试了一下,用psfig 可以
\documentclass{article}
\usepackage{amssymb,amsmath}
\usepackage[dvips]{epsfig}
\begin{document}
\begin{table}
\begin{tabular}{cc} \hline
XXXXX & ZZZZZZZZ \\
YYYYY & \psfig{file=image.ps,height=0.8in,angle=0} \\
\hline
\end{tabular}
\end{table}
\end{document}

【在 F**p 的大作中提到】
: table里面可不可以插入图片?我直接把文字替换成 \includegraphics, 好像不work.
: 自己顶一下吧:
: 一个简单的table:
: \begin{tabular}{|c|c|}
: 1 & 2 \\
: 3 & 4 \\
: \end{tabular}
: 插入一个简单的图片:
: \begin{tabular}{|c|c|}
: \includegraphics[width=0.25\linewidth]{Fig/fig123.eps} & 2 \\

T*******n
发帖数: 493
4

This works for me. Did you forget \usepackage{graphicx}?
What was your error message?

【在 F**p 的大作中提到】
: table里面可不可以插入图片?我直接把文字替换成 \includegraphics, 好像不work.
: 自己顶一下吧:
: 一个简单的table:
: \begin{tabular}{|c|c|}
: 1 & 2 \\
: 3 & 4 \\
: \end{tabular}
: 插入一个简单的图片:
: \begin{tabular}{|c|c|}
: \includegraphics[width=0.25\linewidth]{Fig/fig123.eps} & 2 \\

1 (共1页)
进入TeX版参与讨论
相关主题
请教图片排版问题how to use longtable in latex?
怎么让minipage里的多图竖排列并居中?急问一表格问题
关于Latex插入图表之我见graph question
导入图形的时候, 那个图形文件应该要放在什么目录下插图问题
latex单栏文档中如何双栏显示图片请看代码,如何调整上下两个图的距离?
图表混排的问题a bulleted list in a table?
插图问题如何让一个table和picture永远在一起
how to insert a image in a cell of a table?add caption above floating table using floatflt
相关话题的讨论汇总
话题: tabular话题: begin话题: end话题: table话题: 插入