我尝试在 \maketitle 旁边放一张图片,就像这样问题。但是我把图片放大了,标题就隐藏在图片后面了。我应该怎么修改?下一个问题是,我只有黑色矩形,没有图片。如何添加图片?我以为\vspace{0pt}\includegraphics[width=5.503cm,height=4.654cm]{m.png}
最后的括号是图片的名称。谢谢
\documentclass{article}
\usepackage[left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry}
\newcommand{\mytitle}[1]{\LARGE \textbf{#1}\par}
\newcommand{\mysubtitle}[1]{\large\textbf{#1}\par}
\newcommand{\mydate}[1]{\small #1\par}
\usepackage[demo]{graphicx}
\begin{document}
\noindent%
\begin{minipage}[t]{.3\textwidth}
\vspace{0pt}\includegraphics[width=5.503cm,height=4.654cm]{m.png}
\end{minipage}%
\begin{minipage}[t]{.7\textwidth}
\vspace{20pt}
\mytitle{Title}
\mydate{\today}
\end{minipage}
\end{document}
答案1
我注意到下面代码注释中的变化
\documentclass{article}
\usepackage[left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry}
\newcommand{\mytitle}[1]{\LARGE \textbf{#1}\par}
\newcommand{\mysubtitle}[1]{\large\textbf{#1}\par}
\newcommand{\mydate}[1]{\small #1\par}
% just rectangles \usepackage[demo]{graphicx}
\usepackage{graphicx}
\begin{document}
\noindent%
%.3+.7 leaves no gap
\begin{minipage}[t]{.25\textwidth}
\vspace{0pt}
%%%%% height and width distorts \includegraphics[width=5.503cm,height=4.654cm]{m.png}
\includegraphics[width=\linewidth]{example-image}
\end{minipage}%
\hfill % space between the minipages
\begin{minipage}[t]{.65\textwidth}
\vspace{20pt}
\mytitle{Title}
\mydate{\today}
\end{minipage}
\end{document}