列表旁边的图片

列表旁边的图片

我想在列表旁边放置一个图形,这是我能想到的最好的方法。我不知道该怎么做。

\item Identify
    \begin{tasks}[counter-format =(tsk[1]), label-offset=1.25em](2)
         \task $f(-3)$ \, $f(2)$ $\lim f(x)$ 
         \includegraphics[width=150pt]{00.jpg}
    \end{tasks}

这就是我想要得到的在此处输入图片描述

答案1

这听起来像是一份工作minipage

\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{enumerate}
\item One problem
\item Identify:\newline
  \begin{minipage}[t]{0.4\linewidth}
    \begin{enumerate}
    \item $\displaystyle f(-2)$
    \item $\displaystyle \lim_{x\rightarrow-2}f(x)$
    \item $\displaystyle f(0)$
    \item $\displaystyle \lim_{x\rightarrow0}f(x)$
    \item $\displaystyle f(2)$
    \item $\displaystyle \lim_{x\rightarrow2}f(x)$
    \item $\displaystyle f(x)$
    \item $\displaystyle \lim_{x\rightarrow4}f(x)$
    \end{enumerate}
  \end{minipage}
  \begin{minipage}[t]{0.5\linewidth}
    \centering
    \strut\vspace*{-\baselineskip}\newline\includegraphics[width=0.8\linewidth]{example-image}
  \end{minipage}
\item Next problem
\end{enumerate}
\end{document}

在此处输入图片描述

相关内容