横向 & 浮动 & 文本 & 迷你页面

横向 & 浮动 & 文本 & 迷你页面

编写横向手册,顶部有小节,左侧使用图表显示图像。右侧是文本列表。当我使用 minipage 功能时,我无法将它们放在同一页上。预期的格式是所有图表占据横向页面的一半,列表使用 minipage 占据另一半。如果有人能指导我正确解决这个问题或使用其他方法,我将不胜感激。在此处输入图片描述在此处输入图片描述

\documentclass[12pt]{report}
\usepackage[a4paper, includeheadfoot]{geometry}
\usepackage{graphicx, wrapfig, subcaption, setspace, booktabs}
\usepackage{lscape}


\begin{document}

%A whole bunch of other pages

\newgeometry{left=1cm, right = 1cm , top = 1.5cm, bottom= 0.5cm}

\subsection{Operating Procedure with Pictures}

\begin{figure}[ht]

     \begin{subfigure}{0.25\linewidth}
     \includegraphics[width= 6cm]{Steps/SiloStep.jpg}
     \caption{Main Silo}
     \end{subfigure}
     \begin{subfigure}{0.25\linewidth}
     \includegraphics[width = 6cm]{Steps/SmallDisplayMarked.jpg}
     \caption{Display}
     \end{subfigure}
     \vspace{0.2cm}

     \begin{subfigure}{0.25\linewidth}
     \includegraphics[width = 6cm]{Steps/MixerStep.jpg}
     \caption{Mixer}
     \end{subfigure}
     \begin{subfigure}{0.25\linewidth}
     \includegraphics[width = 6cm]{Steps/PackingStep.jpg}
     \caption{Packing Machine}
     \end{subfigure}
     \vspace{0.2cm}

     \begin{subfigure}{0.25\linewidth}
     \includegraphics[width = 6cm]{Steps/BTStep.jpg}
     \caption{Bottom Right}
     \end{subfigure}

\end{figure}

\hfill

\begin{minipage}[b]{0.5\textwidth}

\begin{tabular}{|p{0.95\textwidth}}

\begin{enumerate}
\setcounter{enumi}{4}

%\item all the items
\end{enumerate}

\end{tabular}
\end{minipage}

\end{landscape}

\clearpage
\restoregeometry

相关内容