该图位于子部分,但它转到子部分

该图位于子部分,但它转到子部分

我需要你的帮助来解决以下问题:

\documentclass[a4paper, 10pt, conference]{ieeeconf}
...
\subsubsection{C}
\begin{figure}[h]
   \begin{minipage}[t]{0.3\linewidth}
      \centering
      \includegraphics[width = 4.5cm]{s.jpg}
      \label{fig:s}
   \end{minipage}
   \hspace{1cm}
   \begin{minipage}[t]{0.3\textwidth}
      \centering
      \includegraphics[width =  4.5cm]{d.jpg}
      \label{fig:d}
   \end{minipage}
\end{figure}

\subsubsection{C} (in the subsection). And I am working with 2 column mode article. I have tried using然而我知道这个数字显示在数字的placeins htp`之前,and但它没有做任何事情,这意味着它没有显示在所需的小节下。

请帮忙

提前致谢。

答案1

一个常见的误解是,数字或表格必须放置在同名环境中,让它们飘走。in situ只要有足够的空间,就可以放置它们,只需放下figuretable环境即可。

如果需要标题(\label没有 ,MWE 中的命令是无用的\caption,那么可以应用\captionofcaption包,但是有带星号的版本\caption*\captionof*不提供 的编号和条目List of Figures

顺便说一句:该类的名称是IEEEconf,而不是ieeeconf。如果在区分大小写文件名的文件系统/操作系统上使用,小写变体可能会导致问题。

个人评论:作为一名老师,我编写的工作表通常不会长达一页,最多两页,从排版的教学角度来看,当你必须在现场传递信息时,让表格和图形飘到下一页并不是一个好主意。

\documentclass[a4paper, 10pt, conference]{IEEEconf}

\usepackage{graphicx}

\usepackage{caption}

\begin{document}
\section{A section}
\subsection{A subsection}
\subsubsection{C}
Foo


\begin{minipage}[t]{0.3\columnwidth}
  \centering
  \includegraphics[width = 3cm]{beeduck}%
  \captionof{figure}{First figure}%
  \label{fig:c}%
\end{minipage}%
\begin{minipage}[t]{0.3\columnwidth}
  \centering
  \includegraphics[width =  3cm]{beeduck}%
  \captionof{figure}{Second figure}%
  \label{fig:d}%
\end{minipage}%

\end{document}

在此处输入图片描述

答案2

这是一个使用[h!]位置说明符来指示 LaTeX 使figure环境不浮动的解决方案。当然,如果列中没有足够的剩余空间来实际插入两个并排的图像及其标题,则此方法将不起作用。

对于小页面和图像,我不会使用绝对宽度,而是使用相对宽度,例如相对于列的整体宽度。

请注意,如果文档类正在使用中,caption则不应加载该包。IEEEconf

在此处输入图片描述

\documentclass[a4paper, 10pt, conference]{IEEEconf}
\usepackage[demo]{graphicx}   % omit 'demo' option in real document
\usepackage{lipsum}           % filler text
\begin{document}

\setcounter{section}{2}       % just for this example
\setcounter{subsection}{4}    % just for this example
\setcounter{subsubsection}{2} % just for this example

\lipsum[2] % filler text

\subsubsection{C}

Lorem ipsum dolor sit amet \dots

\begin{figure}[h!]
\begin{minipage}[t]{0.475\columnwidth}
  \includegraphics[width=\linewidth]{c.jpg}
  \caption{Caption of first figure}
  \label{fig:c}
\end{minipage}
\hspace{\fill} % some spacing between the minipages
\begin{minipage}[t]{0.475\columnwidth}
  \includegraphics[width=\linewidth]{d.jpg}
  \caption{Caption of second figure}
  \label{fig:d}
\end{minipage}
\end{figure}

\lipsum[2] % more filler text
\end{document}

答案3

在我的手机上写道:

使用包漂浮然后使用[H]代替[H]作为放置选项。

相关内容