开发者

Adding the abstract to the front page in Latex

开发者 https://www.devze.com 2023-01-10 17:59 出处:网络
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

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?

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开发者_StackOverflow{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}


Wrap your title page to minipage

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

Then you can add text below it.

0

精彩评论

暂无评论...
验证码 换一张
取 消