我正在尝试将两个小页面对齐。第一个小页面是表格形式的信息。第二个小页面是一张照片。如您所见,照片的起始高度与表格的第一行不相同。我该如何固定第二个小页面的位置,使图片与表格的第一行对齐?希望您能帮助我
\section{Persönliche Informationen}
\savestack\mytable{
\begingroup
\renewcommand{\arraystretch}{1.0}
\begin{tabular}{rl}
\textsc{Vor- und Nachname:} & Max Mustermann\\\
\textsc{Geburtsdatum und -ort:} & 01.01.1995 in Musterstadt\\
\textsc{Staatsangehörigkeit:} & deutsch\\
\textsc{Familienstand:} & ledig\\
\textsc{Adresse:} & Musterstraße 1\\
\textsc{} &12345 Musterstadt \\
\textsc{Mobil:} & +49~(123)~4567~8910\\
\textsc{email:} & \href{mailto:max\[email protected]}\\
\end{tabular}
\endgroup
}
\begin{minipage}[t][4,8cm]{0.492\textwidth}
\mytable
\end{minipage}
\begin{minipage}[c]{0.5\textwidth}
\begin{flushright}
\includegraphics[scale = 0.1475]{ba}
\end{flushright}
\end{minipage}
答案1
在...的帮助下adjustbox
:
\documentclass{article}
\usepackage[margin=2cm]{geometry}
\usepackage[demo]{graphicx} % do not use demo in real document
\usepackage[export]{adjustbox} % provides the valign option
\usepackage{hyperref}
\begin{document}
\section{Persönliche Informationen}
\begin{minipage}[t]{0.7\textwidth} % adjusted width since the table seems to be a lot sider than the image
\renewcommand{\arraystretch}{1.0}
\begin{tabular}[t]{rl} % added [t]
\textsc{Vor- und Nachname:} & Max Mustermann\\\
\textsc{Geburtsdatum und -ort:} & 01.01.1995 in Musterstadt\\
\textsc{Staatsangehörigkeit:} & deutsch\\
\textsc{Familienstand:} & ledig\\
\textsc{Adresse:} & Musterstraße 1\\
\textsc{} &12345 Musterstadt \\
\textsc{Mobil:} & +49~(123)~4567~8910\\
\textsc{email:} & \href{mailto:[email protected]}{max\[email protected]}\\ % corrected the use of \href, second argument was missing
\end{tabular}
\end{minipage}% % added a % here to make sure both minipages fit
\begin{minipage}[t]{0.3\textwidth} % used [t] instead of [c], adjusted width since the table seems to be a lot sider than the image
\begin{flushright}
\includegraphics[scale = 0.1475, valign=t]{ba} % added valign=t
\end{flushright}
\end{minipage}
\end{document}