I want to set chapters to look like 'bigger' sections.
Now in the report class I have a style like:
Chapter 1
Introduction
1.1. Section
What I want to achieve is:
- Introduction
1.1. Section
I don't want to change the document class.
I want to set chapters to look like 'bigger' sections.
Now in the report class I have a style like:
Chapter 1
Introduction
1.1. Section
What I want to achieve is:
- Introduction
1.1. Section
I don't want to change the document class.
You could use the titlesec package. For example:
\documentclass{report}
\usepackage{titlesec}
\titleformat{\chapter}
{\normalfont\LARGE\bfseries}{\thechapter}{1em}{}
\titlespacing*{\chapter}{0pt}{3.5ex plus 1ex minus .2ex}{2.3ex plus .2ex}
\begin{document}
\chapter{Introduction}
\section{Section}
\end{document}

The package documentation will tell you more. Type texdoc titlesec at the command prompt or follow the link to CTAN at the beginning of this answer.
Use the KOMA-Script class
\documentclass[numbers=enddot]{scrreprt}
\thechapter.in the\titleformatdefinition. Similar for sections. – Stefan Kottwitz Feb 05 '11 at 14:23report.clsto add dot in ToC. – pixel Feb 05 '11 at 19:34\renewcommandwithin your document instead to redefine the respective macro. Other documents might base onreport.cls, so you would change their layout as well, also your future report documents. – Stefan Kottwitz Feb 05 '11 at 19:41