在 LaTeX 中插入图像的问题

在 LaTeX 中插入图像的问题

我对浮动图片有疑问。系统会将其放置在任何地方,但我希望将其放置在一些文本之后。我不得不使用不同的方法来放置图片,但没有结果。我的代码是:

\documentclass[
% twocolumn,
]{ceurart}

\usepackage{float}

....
\begin{figure}[h]
\centering
\includegraphics[width=13cm]{ranking.png}
\caption{Diagram of the functionality of online platforms}
\label{ris:ranking}
\end{figure}

在带有键的代码行中[h]我有一条消息:

Latex3 error: the key ‘cas/fig/h’ is unknown and is being ignored.

答案1

该类基于并具有用于和cas-common选项的键值系统。figuretable

\documentclass[
% twocolumn,
]{ceurart}

\begin{document}

\begin{figure}[width=13cm,pos=htp]
\centering
\includegraphics[width=\figwidth]{example-image}
\caption{Diagram of the functionality of online platforms}
\label{ris:ranking}
\end{figure}

\end{document}

您可能应该width按照 来设置\columnwidth

答案2

文档类ceurart不允许使用放置选项。以下 MWE 可以正常工作:

\documentclass{ceurart}

\usepackage{float}

\begin{document}
    \begin{figure}  % <--- ceurart doesn't allow the use of placement options
    \centering
\includegraphics[width=13cm]{example-image-duck}
\caption{Diagram of the functionality of online platforms}
\label{ris:ranking}
    \end{figure}
\end{document}

在此处输入图片描述

相关内容