0

I'm a beginner and I understand this is a basic error, however after 45mins of googling nothing I found is the same as my error and no fixes are useable.

My code:

\documentclass{article}

\title{NAME}

\author{NAME}


\begin{document}

\maketitle

\pagenumbering{gobble}

\newpage

\pagenumbering{Arabic}

\section{Test}

test

\end{document}

I get an error at the last line \end{document} that tells me I should have a number? So this seems to be some type of formatting issue, google tells me I misplaced a bracket, but.. i have no brackets.

TeXnician
  • 33,589
Alex
  • 1

1 Answers1

1

I think what the author of the tutorial wanted to show might have been the following. The title on its own page, that page not having a page number and the next page starting with one. That is LaTeX default with the titlepage option.

alexPagenumbering

\documentclass[titlepage]{article}

\title{Life of Walter Wombat}
\author{Carl Capybara}

\begin{document}

\maketitle
\section{Hello Little Duck}

beautiful story

\end{document}
Johannes_B
  • 24,235
  • 10
  • 93
  • 248