写真の配置

写真の配置

そこで、テキストの右側に画像を配置しようとしています。他の問題/質問で見つけた多くの例に従って、次のようになりました 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}

関連情報