标签和文本在枚举环境中不对齐

标签和文本在枚举环境中不对齐

我想使用 minipage 来达到这个结果: 图片2

但是我的代码:

\begin{minipage}[t]{0.5\textwidth}
Solve the problem (\ref{pdeb09_002}) for the function
$$
\varphi(x)=x^2 \text { on }[-\pi, \pi]
$$
that is extended $2 \pi$-periodically to $\mathbb{R}$.\\

Here is the graph of this function:
\end{minipage}
\begin{minipage}{0.38\textwidth}
\includegraphics[width=\textwidth]{Figures/001_b9.pdf}
\end{minipage}

给出结果: 图3

答案1

您需要将两个构造的对齐点(或锚点)置于相同(顶部)位置。因此,您可以使用的通用设置如下:

...
\usepackage[export]{adjustbox}
...
\begin{minipage}[t]{<width>}
  %<stuff>
\end{minipage}\hfill
\includegraphics[width=<width>,valign=t]{<image>}
...

上述代码将和图像的锚点都设置minipagetop。

相关内容