将图形标题删除为表格标题?

将图形标题删除为表格标题?

由于某种原因,Zarko 提供的代码(如下)无法在我的计算机上运行:

如何在表格中画垂直线?

因此我暂时决定在他的解决方案中使用他的照片并将其作为 png 文件包含在内:

\begin{figure}[!htb]
\centering
\includegraphics[width=0.8\textwidth]{U4OxK.png}
\caption{Table 1: Description of parameters}
\label{top}
\end{figure}  

这将图形标记为图 x:xxxxxxx。如何将其删除,将其命名为图 x:bla bla bla,而将其命名为表 x:参数描述,而不更改我后面的图形顺序?

编辑:如果有人知道这个问题,我希望他们能够解决它,因为与图像相比,使用实际代码会更好。

答案1

将图表制成表格:

A

    \documentclass[12pt,a4paper]{article}
    \usepackage{graphicx}
    \begin{document}
        
        
        \begin{figure}[!htb]
            \centering
            \includegraphics[width=0.3\textwidth]{example-image-a}
            \caption{$p=0.9$, $q=0.8$, $r=0.7$, $\xi_1 =0.7$, $\xi_2 =0.8$  hence $\mathcal{R}_0 \approx 0.1599$.}
            \label{top}
        \end{figure} 
    
        \begin{table}[!htb]
            \centering
            \includegraphics[width=0.3\textwidth]{example-image-b}
            \caption{$p=0.9$, $q=0.8$, $r=0.7$, $\xi_1 =0.7$, $\xi_2 =0.8$  hence $\mathcal{R}_0 \approx 0.1599$.}
            \label{middle}
       \end{table} 
    
    
        \begin{figure}[!htb]
            \centering
            \includegraphics[width=0.3\textwidth]{example-image-c}
            \caption{$p=0.9$, $q=0.8$, $r=0.7$, $\xi_1 =0.7$, $\xi_2 =0.8$  hence $\mathcal{R}_0 \approx 0.1599$.}
            \label{bottom}
    \end{figure} 

\large

Top is Figure \ref{top}

Middle it Table \ref{middle}

Bottom is Figure \ref{bottom}
    

相关内容