wrapfigure のキャプションを変更する

wrapfigure のキャプションを変更する

wrapfigure を使用して、表と画像の両方を含めています。ただし、wrapfigure 内にあるため、表のキャプションには、table x ではなく、「Figure 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実際の数字を黒い四角形に置き換えるだけです。ない実際のドキュメントではそのオプションを使用します。

関連情報