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} :
|