Currently, at the beginning of the document, I put
Code: Select all
\addtocounter{page}{-1}
I would very much appreciate your help!

Code: Select all
\addtocounter{page}{-1}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Code: Select all
\documentclass[12pt]{article}
\usepackage{fullpage}
\usepackage{setspace}
\begin{document}
\begin{titlepage}
\vspace{-0.3in}
\title{Title\thanks{Footnotes}}
\begin{singlespace}
\author{Name}
\date{Date}
\maketitle
\end{singlespace}
\vspace{-0.05in}
\setlength{\parskip}{-0.12in}
\begin{onehalfspace}
\begin{abstract}
Abstract
\end{abstract}
\end{onehalfspace}
\end{titlepage}
\setlength{\parskip}{0.00in}
\newpage
\onehalfspace
\section{Introduction}
Sample introduction.
\newpage
Sample page 2
\end{document}
localghost wrote:You can use the titlepage environment for the first page. It will be automatically unnumbered and the following page will be numbered as you want.
Thorsten
Code: Select all
\documentclass[12pt,titlepage]{article}
\usepackage[T1]{fontenc}
\title{The Title}
\author{The Author}
\begin{document}
\maketitle
\section{Foo}
\end{document}
Code: Select all
\addtocounter{page}{-1}
\thispagestyle{empty}
localghost wrote:Your example is not compilable due to occurring errors.
Code: Select all
\documentclass[12pt]{article}
\usepackage{fullpage}
\usepackage{setspace}
\begin{document}
\begin{titlepage}
\vspace{-0.3in}
\title{Title\thanks{Footnotes}}
\begin{singlespace}
\author{Name}
\date{Date}
\maketitle
\end{singlespace}
\vspace{-0.05in}
\setlength{\parskip}{-0.12in}
\begin{onehalfspace}
\begin{abstract}
Abstract
\end{abstract}
\end{onehalfspace}
\end{titlepage}
\setlength{\parskip}{0.00in}
\newpage
\onehalfspace
\section{Introduction}
Sample introduction.
\newpage
Sample page 2
\end{document}
soTo wrote:What about the following?
Does it work?Code: Select all
\addtocounter{page}{-1} \thispagestyle{empty}
Code: Select all
\documentclass[12pt]{article}
\usepackage{fullpage}
\usepackage{setspace}
\begin{document}
\addtocounter{page}{-1}
\thispagestyle{empty}
\vspace{-0.3in}
\title{Title\thanks{Footnotes}}
\begin{singlespace}
\author{Name}
\date{Date}
\maketitle
\end{singlespace}
\vspace{-0.05in}
\setlength{\parskip}{-0.12in}
\begin{onehalfspace}
\begin{abstract}
Abstract
\end{abstract}
\end{onehalfspace}
\setlength{\parskip}{0.00in}
\newpage
\onehalfspace
\section{Introduction}
Sample introduction.
\newpage
Sample page 2
\end{document}
Your example was not compiling! The code you presented first began two times a »singlespacing« environment and ended it only once. In the meantime you obviously edited your post. Please don't take me for a fool. And don't tell me that it compiled on your machine. You probably use TeXnicCenter which is compiling in nonstop mode that doesn't stop in case of upcoming errors.latexhelp1 wrote:I have no idea how my code is not compiling. It is compiling on my computer, and I will attach the .pdf
localghost wrote: Your example was not compiling! The code you presented first began two times a »singlespacing« environment and ended it only once. In the meantime you obviously edited your post. Please don't take me for a fool. And don't tell me that it compiled on your machine. You probably use TeXnicCenter which is compiling in nonstop mode that doesn't stop in case of upcoming errors.
If you would have tested my example you would have seen that it does exactly what you want. You only have to translate that it to your document.
Code: Select all
\documentclass[12pt,english]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{setspace}
\usepackage{blindtext}
\title{The Title}
\author{The Author}
\begin{document}
\pagenumbering{gobble} % turn off page numbering
\maketitle
\begin{abstract}
\onehalfspacing
\blindtext
\end{abstract}
\newpage
\pagenumbering{arabic} % turn on page numbering starting at "1"
\blinddocument
\end{document}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis