My document has one "figure" section, but I don't want to show the title in the section, so I define a new command "nosection" to do this.
Code: Select all
\newcommand{\nosection}[1]{
\refstepcounter{section}%
\addcontentsline{toc}{section}{\protect\numberline{\thesection}#1}}
Code: Select all
\nosection{Figures}
\begin{figure}[htb]
\centering
\hypertarget{figure1}{}
\pdfbookmark[2]{Figure1}{figure1}
\includegraphics[height=0.45\textheight, width=0.95\textwidth, keepaspectratio]{1.eps}
\caption{}
\end{figure}
\begin{figure}[b]
\centering
\hypertarget{figure2}{}
\pdfbookmark[2]{Figure2}{figure2}
\includegraphics[height=0.45\textheight, width=0.95\textwidth, keepaspectratio]{2.eps}
\caption{}
\end{figure}
\begin{figure}[htb]
\centering
\hypertarget{figure3}{}
\pdfbookmark[2]{Figure3}{figure3}
\includegraphics[height=0.45\textheight, width=0.95\textwidth, keepaspectratio]{3.eps}
\caption{}
\end{figure}
\begin{figure}[htb]
\centering
\hypertarget{figure4}{}
\pdfbookmark[2]{Figure4}{figure4}
\includegraphics[height=0.45\textheight, width=0.95\textwidth, keepaspectratio]{4.eps}
\caption{}
\end{figure}
PS. And the last page only has 1 picture, how can I put the picture on the top of the page? I have tried to use "\begin{figure}[t]", but it didn't work.