Расположение изображения

Расположение изображения

Итак, я пытаюсь поместить картинку справа от текста. Следуя многим примерам, которые я нашел в других проблемах/вопросах, я закончил следующим MWE:

\documentclass{article}
\usepackage{geometry}
\usepackage{float}
\usepackage{graphicx}
\graphicspath{ {./Pictures/} } %not the actual path
\begin{document}
\subsubsection{Arc-Dimension}
    $\alpha=\dfrac{b}{r}\rightarrow$
    \begin{tabular}{l@{$\equiv$}l}
        $\alpha$& Angle in [rad]=$\emptyset$\\
        $b$&Size of arc\\
        $r$&Radius of sector
    \end{tabular}
    \begin{figure}[H]
        \centering
        \includegraphics[width=3cm,angle=0]{Arc_Dim.png}
    \end{figure}
    $\alpha\in[0;2\pi] $ is arc-Dimension\\
    $\alpha_G\in[0\deg;360\deg]$ is degree\\ 
    $\Rightarrow\dfrac{\alpha}{\pi}=\dfrac{\alpha_G}{180\deg}$
\end{document}

Arc_Dim.png:

и вывод следующий:

Для точности: я бы хотел, чтобы картинка поднималась по горизонтальной оси так, чтобы она была на той же высоте, что и текст.

решение1

С minipagesпереписанной математической частью:

введите описание изображения здесь

\documentclass{article}
\usepackage{geometry}
\usepackage{amsmath}

\usepackage[demo]{graphicx} % <-- remove demo option in actual document
\usepackage[export]{adjustbox}


\begin{document}
\subsubsection{Arc-Dimension}

\begin{minipage}{0.5\textwidth}
\begin{align*}
    \alpha&=\frac{b}{r}\rightarrow
    \begin{aligned}
        \alpha &\equiv \text{Angle in [rad]}=\emptyset\\
        b &\equiv \text{Size of arc}\\
        r &\equiv \text{Radius of sector}
        \end{aligned}\\
     \alpha&\in[0;2\pi]{}\: \text{is arc-Dimension} \\
     \alpha_G&\in[0\deg;360\deg]{}\: \text{is degree} \\
     &\Rightarrow\frac{\alpha}{\pi}=\frac{\alpha_G}{180\deg}
    \end{align*}
\end{minipage}%
\begin{minipage}{0.5\textwidth}
        \includegraphics[width=3cm,angle=0, valign=t]{Arc_Dim.png}
\end{minipage}
\end{document}

Связанный контент