更改包装图的标题

更改包装图的标题

我使用 wrapfigure 来包含表格和图片。但是,由于它是在 wrapfigure 中,因此表格标题标记为“图 X”而不是表格 x。

有什么办法可以解决这个问题吗?

谢谢!这是我的直接代码片段!

\begin{wrapfigure}{l}{8.5cm}
\begin{tabular}{|c|c|c|c|c|}
    \hline
    Cluster  & Start & End & Muts. in Cluster & P-Value    \\ \hline
    1 & 751   & 858 & 4 & 1.35E-04 \\ 
    2 & 719   & 751 & 2 & 2.41E-03 \\ 
    3 & 790   & 858 & 2 & 2.82E-03 \\
    \hline
\end{tabular}
\caption{The three most significant clusters found in EGFR for the 2GS7 structure.}
\label{tab:EGFRClust}

\includegraphics[width = 0.5\textwidth]{EGFRDrawing.eps}
\caption{The 2GS7 structure color coded by region: 1) cluster 1 - orange, 2) cluster 2 - blue and 3) cluster 3 - yellow. The boundary $\alpha$-carbon amino acids of 719, 751, 768, 790 and 858 are shown as purple spheres.}
\label{fig:EGFR-2GS7}
\end{wrapfigure} 

答案1

您可以使用\captionof命令由capt-of或者caption包装:

\documentclass{article}
\usepackage{wrapfig}
\usepackage{capt-of}
\usepackage[demo]{graphicx}
\begin{document}

\begin{wrapfigure}{l}{8.5cm}
\begin{tabular}{|c|c|c|c|c|}
    \hline
    Cluster  & Start & End & Muts. in Cluster & P-Value    \\ \hline
    1 & 751   & 858 & 4 & 1.35E-04 \\ 
    2 & 719   & 751 & 2 & 2.41E-03 \\ 
    3 & 790   & 858 & 2 & 2.82E-03 \\
    \hline
\end{tabular}
\captionof{table}{The three most significant clusters found in EGFR for the 2GS7 structure.}
\label{tab:EGFRClust}

\includegraphics[width = 0.5\textwidth]{EGFRDrawing.eps}
\captionof{figure}{The 2GS7 structure color coded by region: 1) cluster 1 - orange, 2) cluster 2 - blue and 3) cluster 3 - yellow. The boundary $\alpha$-carbon amino acids of 719, 751, 768, 790 and 858 are shown as purple spheres.}
\label{fig:EGFR-2GS7}
\end{wrapfigure} 

\end{document}

在此处输入图片描述

选项demo只是graphicx用黑色矩形替换实际图形;不是在实际文档中使用该选项。

相关内容