由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
TeX版 - how to insert a image in a cell of a table?
相关主题
如何在table里面插入图?请问tabular里面的一个格子里如何能够换行呢?谢谢!
请教一个表格问题。如何给一段文字加上框框?
Table 的黑粗线是怎么弄出来的?Latex表格问题:左上角斜杠分行列?
急问一表格问题how to use longtable in latex?
新人提问,怎么把一个tabular左上角的那个cell删除?如何使表格左对齐?
请问:Tex里面画表格的问题About table
怎么控制表格里行的高度?help on subtable label
add caption above floating table using floatflt请问把tabular里两个column设成等宽的命令
相关话题的讨论汇总
话题: table话题: tabular话题: begin话题: insert话题: psnr
进入TeX版参与讨论
1 (共1页)
g*********h
发帖数: 21
1
anyone knows how to do it by Latex? Thanks,
s***t
发帖数: 195
2
what's so special? just do an \includegraphics.

【在 g*********h 的大作中提到】
: anyone knows how to do it by Latex? Thanks,
g*********h
发帖数: 21
3
it seems not to work by following command:
\begin{table}

\centering

\caption{PSNR(dB) performance comparison between STALL-based
impulse noise removal algorithm(w/o-without resampling and fusion,
w-with resampling and fusion}\label{table:psnr:dns}
\begin{figure}

\includegraphics[width=3in]{./Chapter-3/Figures/dns_psnr}\\
\end{figure}
\end{table}

【在 s***t 的大作中提到】
: what's so special? just do an \includegraphics.
c*******o
发帖数: 1722
4
you need to use tabular
table only takes care of the numbering stuff.
tabular actually do the real table work.

【在 g*********h 的大作中提到】
: it seems not to work by following command:
: \begin{table}
:
: \centering
:
: \caption{PSNR(dB) performance comparison between STALL-based
: impulse noise removal algorithm(w/o-without resampling and fusion,
: w-with resampling and fusion}\label{table:psnr:dns}
: \begin{figure}
:

g*********h
发帖数: 21
5
but seems tabular also not work
\begin{tabular}{|c|}
%
after \\: \hline or \cline{col1-col2} \cline{col3-col4} ...
\begin{figure}

% Requires \usepackage{graphicx}

\includegraphics[width=3in]{./Chapter-3/Figures/fusion_psnr.eps}

\end{figure}
\end{tabular}

【在 c*******o 的大作中提到】
: you need to use tabular
: table only takes care of the numbering stuff.
: tabular actually do the real table work.

N**D
发帖数: 10322
6
remove
\begin{figure} ... \end{figure}

【在 g*********h 的大作中提到】
: but seems tabular also not work
: \begin{tabular}{|c|}
: %
: after \\: \hline or \cline{col1-col2} \cline{col3-col4} ...
: \begin{figure}
:
: % Requires \usepackage{graphicx}
:
: \includegraphics[width=3in]{./Chapter-3/Figures/fusion_psnr.eps}
:

T*******n
发帖数: 493
7
\begin{table}
\begin{tabular}{|c|}
\includegraphics{...}
\end{tabular}
\end{table}
If you don't want the "tabular" to float, don't put "table" around it.

【在 g*********h 的大作中提到】
: but seems tabular also not work
: \begin{tabular}{|c|}
: %
: after \\: \hline or \cline{col1-col2} \cline{col3-col4} ...
: \begin{figure}
:
: % Requires \usepackage{graphicx}
:
: \includegraphics[width=3in]{./Chapter-3/Figures/fusion_psnr.eps}
:

1 (共1页)
进入TeX版参与讨论
相关主题
请问把tabular里两个column设成等宽的命令新人提问,怎么把一个tabular左上角的那个cell删除?
怎么样让图片在固定的地方出现?请问:Tex里面画表格的问题
怎么让\rightarrow 和 tabular 建立的方框连接怎么控制表格里行的高度?
tabular里面怎么加一条第3行到第5行的竖线亚?add caption above floating table using floatflt
如何在table里面插入图?请问tabular里面的一个格子里如何能够换行呢?谢谢!
请教一个表格问题。如何给一段文字加上框框?
Table 的黑粗线是怎么弄出来的?Latex表格问题:左上角斜杠分行列?
急问一表格问题how to use longtable in latex?
相关话题的讨论汇总
话题: table话题: tabular话题: begin话题: insert话题: psnr