替代方案中的数字

替代方案中的数字

我必须问一些带有数字选项的问题,一些问题提供垂直选项,另一些问题提供水平选项。我曾尝试这样做,

\begin{enumerate}
\item \begin{figure}[h]
    \centering
    \includegraphics[scale=0.6]{Imagen.png}
\end{figure}
\end{enumerate}

即使使用了子图,也没有得到任何好的结果。有什么帮助吗?

我希望有 4 个图表作为备选,我的另一个问题是,也许所有 4 个图表都适合我制作的表格。以防万一,我附上了我的 \geometry:

\geometry{paperwidth=210mm, paperheight=297mm,left=2.2cm,right=2.2cm,%
    includeheadfoot,top=3.5cm,bottom=2cm,headheight=0pt}

例子: 在此处输入图片描述

答案1

一种方法是使用\includegraphics不带环绕\begin{figure}\end{figure}(如评论中所建议的)并手动进行编号。

要将图像与数字顶部对齐,您可以使用adjustbox提供valign=t包含图像的密钥的包。

\documentclass{article}
\usepackage{graphicx}
\usepackage[export]{adjustbox}
\begin{document}
\footnotesize % just to make the text smaller, not needed if you use \geometry
\begin{enumerate}
\item ¿Cuál(es) de los siguientes gráficos representa(n) una función en el intérvalo [-2,2]?\\
I) \includegraphics[width=2cm, valign=t]{example-image} 
II) \includegraphics[width=2cm, valign=t]{example-image-a} 
III) \includegraphics[width=2cm, valign=t]{example-image-b} 
\item Próximo ejercicio
\end{enumerate}
\end{document}

结果:

在此处输入图片描述

也许可以把换行符稍微扩大一点:

\item ¿Cuál(es) [...] en el intérvalo [-2,2]?\\[2mm]

在此处输入图片描述

相关内容