Graphics, Figures & Tablesfigure between title and abstract

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
eorka333
Posts: 2
Joined: Sat Jun 27, 2009 3:08 am

figure between title and abstract

Post by eorka333 »

Hi! ALL!

I want to put a figure between title and abstract.
But whenever I try it, it fails. The figure is place between abstract and introduction. Then, I put the figure below the \title. but it didnot work.

Code: Select all

\title[EG \LaTeX\ Author Guidelines]%
      {Realistic Image Synthesis }

%-------------------------------------------------------------------------
\begin{document}

\maketitle

\begin{figure}[htb]
  \centering
  \includegraphics[width=1.0\linewidth]{fig1}
  \caption{\label{fig:fig1}
           While solid (right).}
\end{figure}
\begin{abstract}
Driven by trends in fashion.

\end{abstract}

\section{introduction}
\end{document}
Thank you in advance.

Cheers

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

spiegboy
Posts: 120
Joined: Thu Dec 06, 2007 9:58 am

Re: figure between title and abstract

Post by spiegboy »

it works for me.

probably you change htb to !h
give it a go.
eorka333
Posts: 2
Joined: Sat Jun 27, 2009 3:08 am

figure between title and abstract

Post by eorka333 »

Thank you for your help!

As you informed, I did it a try!

But the still the figure is placed between the abstract and introduction!

I want to put the figure between title and abstract

Is there any possible solution to include the figure below the title.

Whenever I coded it as below, it didnot work.

Code: Select all

\title[EG \LaTeX\ Author Guidelines]%
      {Realistic Image Synthesis of Pearlescent Paints using a Novel Image-based Goniospectrophotometer}

%%% Figure 1
\begin{figure}[!h]
  \centering
  \includegraphics[width=1.0\linewidth]{fig1}
  \caption{\label{fig:fig1}
           While solid paints (left top).}
\end{figure}

%-------------------------------------------------------------------------
\begin{document}

\maketitle

\begin{abstract}
Driven by trends in fashion. 
\end{abstract}

%-------------------------------------------------------------------------
\section{Introduction}

Thank you in advance,

Cheers
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

figure between title and abstract

Post by localghost »

The figure environment is comletely useless in this case because the image is not going to float. Use the caption package to get caption outside a float environment.

Code: Select all

\documentclass[11pt,a4paper,english]{report}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage[includeheadfoot,margin=2cm]{geometry}
\usepackage[font=small,labelfont=bf,tableposition=top]{caption}
\usepackage[demo]{graphicx}
\usepackage{blindtext}

\pagestyle{headings}
\parindent0em
\title{Realistic Image Synthesis of Pearlescent Paints using a Novel Image-based Goniospectrophotometer}
\author{eorka333}

\begin{document}
  \maketitle
  \begin{center}
    \includegraphics[width=1.0\linewidth]{fig1}
    \captionof{figure}{While solid paints (left top).}\label{fig:fig1}
  \end{center}
  \begin{abstract}
    \blindtext
  \end{abstract}
  \blinddocument
\end{document}

Best regards
Thorsten
Post Reply