嗨,我的第一个页面再次遇到了一些问题,这是我的代码:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\title{balalla}
\author{someone}
\begin{document}
\centering \includegraphics[scale=0.5]{logo_inria}
\nopagebreak
\maketitle
\end{document}
有人能告诉我如何避免分页符吗?
答案1
你应该使用
\begingroup
{\centering \includegraphics[scale=0.5]{logo_inria}\par}
\let\newpage\relax%
\maketitle
\endgroup
\newpage
它本地改变了- 在干净的页面上从头开始执行 -的定义\maketitle
到无操作。
答案2
您可以通过 » 将图片合并到标题中标题“ 包裹。
\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\usepackage[demo]{graphicx} % drop `demo` option in actual document!
\usepackage{titling}
\title{Document Title with incorporated Image}
\author{JaCkO91}
\setlength{\droptitle}{-60pt}
\renewcommand{\maketitlehooka}{%
\begin{center}
\includegraphics[scale=0.5]{logo_inria}
\end{center}%
}
\begin{document}
\maketitle
\end{document}