如何取消图窗口中的标题编号

如何取消图窗口中的标题编号
\documentclass[a4paper]{article}
\usepackage{picinpar}
\usepackage{graphicx}
\begin{document}

\begin{figwindow}[1,l,{\mbox{%
\includegraphics[width=80pt]{g/tiger.png}}},{\label{fig:leadfield}\TeX{} Tiger}]

In this lab, you will record the standard limb leads in sequence,according to the diagram below:
The goal for the Frank electrode system is to capture the three-dimensional extent of the heart dipole.  For this, it is necessary to measure potential differences not just in the frontal plane, as in the limb leads, but along the antero-posterior (front-to-back) axis of the body.  The diagram below illustrates the original Frank lead system \cite{RSM:Fra56} and we will use a simplified version of this.
\end{figwindow}


\end{document}

答案1

你可以定义自己的figwindownonum环境,不使用该figure类型设置标题。相反,它只会打印你传递给它的内容:

在此处输入图片描述

\documentclass[a4paper]{article}
\usepackage{picinpar}% http://ctan.org/pkg/picinpar
\usepackage{graphicx}% http://ctan.org/pkg/graphicx
\makeatletter
\long\def\figwindownonum[#1,#2,#3,#4] {% \begin{figwindownonum}
  \begin{window}[#1,#2,{#3},{\centering#4\par}] }
\def\endfigwindownonum{\end{window}}% \end{figwindownonum}
\makeatother
\begin{document}

\begin{figwindownonum}[1,l,{\mbox{%
\includegraphics[width=80pt]{tiger}}},{\TeX{} Tiger}]
In this lab, you will record the standard limb leads in sequence,according to the diagram below:
The goal for the Frank electrode system is to capture the three-dimensional extent of the heart dipole.  For this, it is necessary to measure potential differences not just in the frontal plane, as in the limb leads, but along the antero-posterior (front-to-back) axis of the body.  The diagram below illustrates the original Frank lead system and we will use a simplified version of this.
In this lab, you will record the standard limb leads in sequence,according to the diagram below:
The goal for the Frank electrode system is to capture the three-dimensional extent of the heart dipole.  For this, it is necessary to measure potential differences not just in the frontal plane, as in the limb leads, but along the antero-posterior (front-to-back) axis of the body.  The diagram below illustrates the original Frank lead system and we will use a simplified version of this.
\end{figwindownonum}

\end{document}

您还可以考虑使用wrapfig包裹。这里有一个小例子,它在某种程度上重复了你的用法:

在此处输入图片描述

\documentclass[a4paper]{article}
\usepackage{wrapfig}% http://ctan.org/pkg/wrapfig
\usepackage{graphicx}% http://ctan.org/pkg/wrapfig
\begin{document}

\begin{wrapfigure}{l}{85pt}
  \centering
  \includegraphics[width=80pt]{tiger} \par
  \TeX{} Tiger
\end{wrapfigure}
In this lab, you will record the standard limb leads in sequence,according to the diagram below:
The goal for the Frank electrode system is to capture the three-dimensional extent of the heart dipole.  For this, it is necessary to measure potential differences not just in the frontal plane, as in the limb leads, but along the antero-posterior (front-to-back) axis of the body.  The diagram below illustrates the original Frank lead system and we will use a simplified version of this.
In this lab, you will record the standard limb leads in sequence,according to the diagram below:
The goal for the Frank electrode system is to capture the three-dimensional extent of the heart dipole.  For this, it is necessary to measure potential differences not just in the frontal plane, as in the limb leads, but along the antero-posterior (front-to-back) axis of the body.  The diagram below illustrates the original Frank lead system and we will use a simplified version of this.


\end{document}

相关内容