让我们考虑以下例子:
\documentclass{book}
\usepackage{graphicx}
\begin{document}
\title{\textbf{ \Huge{My \LaTeX}}}
\author{\textbf{MKS}}
\date{\today}
\maketitle
\begin{figure}[c]
\begin{center}
\rotatebox{0}{\scalebox{.40}{\includegraphics{fig1.png}}}
\caption{This is a Flower}
\end{center}
\end{figure}
\end{document}
得出:
也就是说它们占用了两个不同的页面。我想在单个页面中执行此操作,并且想更改下图中给出的标题:
答案1
\begin{figure}[c]
图形没有c
选项,所以这是一个语法错误,但是这个图像似乎是标题布局的一部分,所以根本不是浮动,所以你figure
根本不想要这个环境。
\begin{center}
可以,尽管它引入了垂直空间
\rotatebox{0}{\scalebox{.40}{\includegraphics{fig1.png}}}
\rotatebox{0}
(如前所述)只是一种低效的做法,\mbox
\scalebox
可以通过使用图形上的比例选项更简单地完成。
\caption{This is a Flower}
\end{center}
只需使用
\begin{center}
\includegraphics[scale=0.4]{fig1.png}
This is a flower
\end{center}
在这种情况下,book
您需要将其添加到\maketitle
(或使用titlepage
环境)。
\documentclass{book}
\usepackage[demo]{graphicx}
\long\def\addimage#1\vfil#2\vfil#3!!{\def\maketitle{#1\vfil#2\titleimage\vfil#3}}
\expandafter\addimage\maketitle!!
\begin{document}
\title{\textbf{ \Huge{My \LaTeX}}}
\author{\textbf{MKS}}
\date{\today}
\newcommand\titleimage{%
\begin{center}
\includegraphics{fig1.png}
\par
This is a Flower
\end{center}}
\maketitle
\end{document}
答案2
使用环境titlepage
\documentclass{book}
\usepackage{graphicx,caption}
\begin{document}
\begin{titlepage}
\begin{center}
\textbf{\Huge My \LaTeX}
\vspace{1cm}
\textbf{MKS}
\vspace{1cm}
\today
\vspace{2cm}
\rotatebox{0}{\scalebox{.40}{\includegraphics{flower}}}
\captionof*{figure}{This is a Flower}
\end{center}
\end{titlepage}
foo
\end{document}
答案3
你可以使用titlepage
环境来尝试。根据LaTeX 维基百科:
\begin{titlepage}
\begin{center}
% Upper part of the page. The '~' is needed because \\
% only works if a paragraph has started.
\includegraphics[width=0.15\textwidth]{./logo}~\\[1cm]
\textsc{\LARGE University of Beer}\\[1.5cm]
\textsc{\Large Final year project}\\[0.5cm]
% Title
\HRule \\[0.4cm]
{ \huge \bfseries Lager brewing techniques}\\[0.4cm]
\HRule \\[1.5cm]
% Author and supervisor
\begin{minipage}{0.4\textwidth}
\begin{flushleft} \large
\emph{Author:}\\
John \textsc{Smith}
\end{flushleft}
\end{minipage}
\begin{minipage}{0.4\textwidth}
\begin{flushright} \large
\emph{Supervisor:} \\
Dr.~Mark \textsc{Brown}
\end{flushright}
\end{minipage}
\vfill
% Bottom of the page
{\large \today}
\end{center}
\end{titlepage}
结果将会是这样的: