是否有可能將數字放在一半,而將數學放在另一半,並封裝在同一個數字框內?

是否有可能將數字放在一半,而將數學放在另一半,並封裝在同一個數字框內?

這可能是不可能的,但我試圖強制使用一張圖片和一組數學方程式來推導一個概念,該圖片有助於在同一個盒子內相互解釋,並且下面有相同的標題,如下所示。 (藍色框代表圖片和(此處的數學方程式)我希望方程組所在的位置。標題將位於圖片和兩列方程式的下方。在此輸入影像描述

我嘗試了一些方法,包括將該頁面分成兩列,但這不起作用。

我也嘗試過

\begin{document}
\usepackage{subcaption}


\begin{figure}
    \begin{subfigure}[b]{0.4\textwidth}
        \includegraphics[width=\textwidth]{Pic1}
        \caption{Picture 1}
        \label{fig:1}
     \end{subfigure}

    \begin{equation}
        y=mx+c
    \end{equation}
\end{figure}


\end{document}

但它不太有效,並將數學放在圖片下方。有人有建議嗎?

答案1

您可能正在尋找以下內容:

在此輸入影像描述

\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}
    \begin{minipage}[c]{0.4\textwidth}
        \includegraphics[width=\textwidth]{example-image}
     \end{minipage}%
     \begin{minipage}{0.6\textwidth}
         \begin{equation}
            y=mx+c
        \end{equation}
    \end{minipage}
    \caption{Picture 1}
    \label{fig:1}
\end{figure}
\end{document}

相關內容