다음 예를 고려해 보겠습니다.
\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}
OK, 수직 공간이 도입되었지만
\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}
결과는 다음과 같습니다.