我尝试过各种不同的方法来实现这一点。我希望标题和作者在左侧对齐,图像在右侧对齐,并且位于同一水平。但是我使用了 2 列,所以我应该使用“maketitle”,而不是简单地绕过它并放大一些文本。
我似乎无法将标题和作者放在左边,它们表现得好像位于中心一样。
\documentclass[twoside]{article}
\usepackage{multicol}
\begin{document}
\title{\fontsize{22pt}{10pt}\selectfont\textbf{Title}}
\author
{
\Large
\textsc{Name}\\[2mm]
\large University \\
\normalsize [email protected] \\
\vspace{-5mm}
}
\date{}
\begin{minipage}{0.65\textwidth}
\maketitle{ \begin{flushleft}
\title
\author
\end{flushleft}
}
\end{minipage}
\begin{minipage}{0.35\textwidth}
\begin{flushright}
\includegraphics[scale=0.28]{image}
\end{flushright}
\end{minipage}
\end{document}
答案1
你知道,你不知道有使用\maketitle
。
或者你也可以\renewcommand{\maketitle}...
。
\documentclass[twoside]{article}
\usepackage{graphics}
\usepackage{mwe}
\begin{document}
\begin{minipage}{0.65\textwidth}
{\fontsize{22pt}{10pt}\selectfont\textbf{Title}}\\
\Large
\textsc{Name}\\[2mm]
\large University \\
\normalsize [email protected] \\
\end{minipage}\hfill% push eveerything to the right
\raisebox{-9mm}{\includegraphics[scale=.28]{image}}
\end{document}