我最近开始学习乳胶,我有以下乳胶代码,其中包含两个小页面和两个部分,在第一部分中我添加了两个图像,然后添加了另一个小页面和其中的一个部分,但我不知道为什么我无法将第二部分的标题与第一部分的标题对齐,我尝试使用 hspace 但没有成功:
\documentclass[a4paper,11pt]{article}
\usepackage[spanish]{babel}
\usepackage[pdftex]{graphicx}
\usepackage{wrapfig}
\usepackage{placeins}
\begin{document}
\title{Imagenes, Tablas y Ecuaciones}
\date{}
\maketitle
\section{Imagenes}
\begin{minipage}[t]{4.8in}
\subsection{Super mario}
\begin{wrapfigure}{}{0.3\textwidth}
\includegraphics[width=0\linewidth,height=5cm]{mario.png}
\caption {Super mario}
\label{mario}
\end{wrapfigure}
\flushright \vspace{-0.7in} \hspace{2cm} \subsection{Tux}
\begin{wrapfigure}{H}{9in}
\vspace{-7.5cm} \hspace{10cm} \includegraphics[width=3cm,height=4cm]{tux.png}
\hspace{4cm} \caption {Tux}
\label{mario}
\end{wrapfigure}
\end{minipage}
\begin{minipage}[t]{8in}
\vspace{2cm} \section{Tabla}
\end{minipage}
\end{document}
有没有办法对齐1.图像 和2.塔布拉鼓而不影响图像的位置?
答案1
把第\begin{minipage}
一个前 \section{Imagenes}
。