tags:

views:

58

answers:

2

Hi,

Included below is my LaTeX code. By default the abstract is on the first page following the title page. But the title page has lots of space below, and my abstract will be short, so is there anyway to include it below the title page components?

Thanks, A code:

\documentclass[12pt,reqno,a4paper,titlepage]{article}

\usepackage{amsmath}

\usepackage{amsthm}

\usepackage{amssybm}%for math bold

\usepackage[pdftex]{graphicx}

\usepackage{verbatim}

\usepackage[margin=2.5cm]{geometry}%for the margins headers footers etc

\usepackage{hyperref}%for the hyperlinks-COOL and must use

\usepackage[tt]{titlepic}%package i downloaded to put a pic in the titlepage

\usepackage{helvet}

\usepackage[usenames,dvipsnames]{color}%options to use names like redviolet and others

\begin{document}

\title{title}

\titlepic{\setlength\fboxsep{0pt}\setlength\fboxrule{4pt}
 \fcolorbox{Plum}{green}{\includegraphics[scale=0.3]{pic}}}

\author{\Huge my name}

\maketitle

\begin{abstract}

abstract text here

\end{abstract}

document text here

\end{document}
+1  A: 

Check out the new Stack Exchange site for TeX and LaTeX. This might be a better question for that site.

http://tex.stackexchange.com/

John D. Cook
This should be a comment, not an answer.
dmckee
Then should ALL latex questions go there?
richardh
@richardh: Essentially all latex question would be on topic there. Questions about programing in latex would continue to on topic *here* as well, so you would want to choose on the basis of where you thought you had the best chance of getting a good answer. All presuming the site survives the bet period (I suspect that it will), of course.
dmckee
+2  A: 

Wrap your title page to minipage

\begin{minipage}[h]{\textwidth}
    \maketitle
\end{minipage}

Then you can add text below it.

Cloudanger
That is good!thanks
Vass