我如何将图像定位到我的条件的右侧?

我如何将图像定位到我的条件的右侧?

我怎样才能将它放置在正确的位置,而不是放置在条件之下?

我的条件代码:

 where:
    \begin{conditions}
    V  &  Volume of cone (cm^{3}) \\ 
    SA  &  Surface area of cone (cm^{2})  \\
    r  & Radius of cone (cm)\\
    l  & Slant height of cone (cm) \\
     
    \end{conditions}

答案1

尝试这个:

\documentclass[a4paper]{article}
\usepackage{graphicx}
\usepackage{amsmath}

\begin{document}

\vfill
\begin{minipage}{0.3\linewidth}
    \includegraphics[width=\linewidth]{example-image-a}
\end{minipage}\hfil
\begin{minipage}{0.55\linewidth}
where:
    \begin{align*}
    V  &=  Volume of cone (cm^{3}) \\ 
    SA  &=  Surface area of cone (cm^{2})  \\
    r  &= Radius of cone (cm)\\
    l  &= Slant height of cone (cm)
    \end{align*}
\end{minipage}
\end{document}

相关内容