在“枚举”环境中,如何将图像定位在微积分的右侧?

在“枚举”环境中,如何将图像定位在微积分的右侧?

我正在准备一门微积分课程,想要得到解决方案(通常不会占用超过页面宽度的一半,并且可能在右侧绘图。

我的解决方案是“枚举”环境的一部分,其中我使用“align*”使微积分步骤更加清晰。

我找不到任何方法在每个解决方案的右侧放置图片。我唯一能想到的就是有一个“表格”,但将“表格”和左列中的“枚举”结合起来并分成不同的行的想法……在我看来非常复杂。

您能帮我找到一个布局清晰的简单解决方案吗?

\documentclass[12pt,a4paper]{article}
\usepackage[a4paper,top=1.8cm,bottom=2cm,left=1.8cm,right=1.8cm]{geometry}
\usepackage[french]{babel}
\usepackage[dvipsnames,table]{xcolor}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc} % pour les caractères avec des accents
\usepackage[fleqn]{amsmath}
\usepackage{amssymb}
\usepackage{graphicx}
\graphicspath{ {./images/} }

\begin{document}

\begin{enumerate}
    \item $cos (2x) = - cos (\pi - x)$
    \begin{align*}
     cos (2x) & = - cos (\pi - x)\\
     cos (2x) + cos (\pi - x) & = 0\\
     cos (2x) - cos(x) & = 0\\
     ...\\
    \end{align*}

\begin{figure}[h] % I'd like this picture to be on the right side of the first item
\begin{center}
\includegraphics[width=150pt]{example-image}
\end{center}
\end{figure}

    \item $sin(x)=-sin(\pi - 2x)$
\end{enumerate}

\end{document}

链接到 example-image.pdf(我似乎无法附加非图像的文件):https://drive.proton.me/urls/JQNA4TGEN8#2bueL70zHW1N

答案1

我能够让 MWE 与minipage环境和adjustbox包一起工作。后者用于对齐图像,因为对齐小页面可能很棘手。

\documentclass[12pt, a4paper]{article}

\usepackage{geometry}
\usepackage{amsmath}
\usepackage[export]{adjustbox}  % For aligning images in minipages

\begin{document}

\begin{enumerate}
    \item
    \begin{minipage}[t]{0.45\textwidth}
        \(\cos(2x) = -\cos(\pi - x)\)
        \begin{align*}
            \cos(2x) &= -\cos(\pi - x)\\
            \cos(2x) + \cos(\pi - x) &= 0\\
            \cos(2x) - \cos(x) &= 0
        \end{align*}
    \end{minipage}
    \hfill
    \begin{minipage}[t]{0.45\textwidth}
        \centering
        \includegraphics[width=0.8\textwidth, valign=t]{example-image-a}
    \end{minipage}

    \item
    \begin{minipage}[t]{0.45\textwidth}
        \(\sin(x) = -\sin(\pi - 2x)\)
    \end{minipage}
    \hfill
    \begin{minipage}[t]{0.45\textwidth}
        \centering
        \includegraphics[width=0.8\textwidth, valign=t]{example-image-b}
    \end{minipage}
\end{enumerate}

\end{document}

小页面中的参数[t]根据其内容的参考点将小页面对齐到顶部。但是,图像的参考点位于其左下角,因此这种“顶部”对齐实际上将文本的顶部与图像的底部对齐(如上所述这里这里)正如@egreg所建议的此评论valign=t来自adjustbox包的参数可以强制真正的顶部对齐。

MWE 在枚举环境中将示例图像与方程式对齐

相关内容