Possible Duplicate:
Section numbering
I'm happy with the logical layout of my document, but the section numbering is bugging me.
I'd like the first section (the introduction) to be 1, not 1.1. Also, the second section should be 2, not 1.2 (yes, that's a one, like it is still the introduction). I'm getting something wrong, obviously. (I also want sections beginning at the top of a new page, and page numbering should start with the introduction, if you wonder about the other stuff I had to put in the document header. But those things work.)
Any other suggestions are welcome, of course.
% x.tex
\documentclass[a4paper, twoside, draft, 12pt]{report}
\usepackage[pdftex, final]{graphicx}
\graphicspath{{./pics/}}
\usepackage[parfill]{parskip}
\usepackage{titlesec}
\newcommand{\sectionbreak}{\clearpage}
\setcounter{tocdepth}{6}
\setcounter{secnumdepth}{6}
\setcounter{chapter}{1}
\begin{document}
\begin{titlepage}
% some stuff here
\end{titlepage}
\pagebreak
\tableofcontents
\thispagestyle{empty}
\pagebreak
\cleardoublepage
\pagenumbering{arabic}
\section{Introduction}
% first section - should have number 1, but have 1.1
\subsection{Services}
% subsection - should be 1.1, is 1.1.1
\section{The algorithm}
% new section - number is 1.2, should be 2
\end{document}
Edit
With the article solution, it suddenly looks like this here and there. Otherwise, it works.


reportstarts sectioning (is this right in English?) with\chapter. Thats the reason where your0.comes from. Change\sectionto\chapteror use document classarticle... – Kurt Sep 18 '12 at 21:29articledid it, but now I get big chunks of white here and there. It appears it tries to distribute paragraphs evenly on the page, but the result is rather... well, it looks like there is some thing missing, like a figure or picture. Do you know how to cure this as well? – Emanuel Berg Sep 18 '12 at 21:37\raggedbottomin the preamble can solve this problem. – Kurt Sep 18 '12 at 21:48\raggedbottom. – Kurt Sep 18 '12 at 22:17