我正在尝试用 latex 创建用户手册。我尝试使用一个 2 列表,一列是列表,另一列是屏幕截图
我可以创建一个 minpage,但它没有正确对齐,而且我无法获得边框
\begin{minipage}[c]{0.45\textwidth}
\begin{enumerate}
\item Open File Explorer
\item Type sudo apt-get install
\end{enumerate}
\end{minipage}
\hfill
\begin{minipage}[t]{0.45\textwidth}
\includegraphics[width=\textwidth]{example-image}
\caption{caption within minipage}
\end{minipage}
答案1
欢迎来到 TeX.SE!几乎有无数种选择。但是,由于您似乎瞄准的东西看起来像表格,为什么不使用表格呢。(\raisebox
技巧借鉴自这里。
\documentclass{article}
\usepackage{graphicx,array,caption}
\begin{document}
\begin{tabular}{|m{0.45\textwidth}|m{0.45\textwidth}|}
\hline
\multicolumn{2}{|c|}{Instructions}
\\
\hline
\begin{enumerate}
\item Open File Explorer
\item Type sudo apt-get install
\end{enumerate} &
\raisebox{-0.67\totalheight}{%
\includegraphics[width=0.9\linewidth]{example-image-duck}}
\\
&
\captionof{figure}{caption without minipage} \\
\hline
\end{tabular}
\end{document}