算法与图形的对齐不精确

算法与图形的对齐不精确

考虑以下代码:

\begin{minipage}{.45\textwidth}
\begin{lstlisting}[style = Matlab-editor, caption = {MATLAB Algorithm 6}, label = first]
function [text] = TEXT(text,text)
a=text;
b=text;
T(:,1)=c;
s=b(w,y);
q=r+s;
plot(a,b,c,d,e,f)
end
\end{lstlisting}
\end{minipage}%
\begin{minipage}[t]{.45\textwidth}
\centering
\smallskip
  %\rule{0.3\textwidth}{50pt}
  \includegraphics[width=.8\textwidth]{textimage.jpg}
  \captionof{figure}{textabcdefg} \label{myfig1}
\end{minipage}

在此处输入图片描述

尽管我尝试改变比例/文本宽度的比例,但图形和算法之间的对齐仍然不起作用

答案1

参见 Bernard 的评论:将选项 [t] 添加到第一个小页面,并用 vskip 4.8ex 替换 \smallskip (根据您的图像和左侧的实际代码进行调整),可以获得良好的对齐。

相关内容