I've had to alter my contents page to fit in with requirements for my thesis.
I need my chapter headings to read X.0 "chapter name". e.g. 1.0 Introduction
I've managed to do this using the title sec package, however it has caused a couple of new formatting issues that I can't fix. Here is the code:
\documentclass[12pt,a4paper]{report}
\linespread{1.3}
\usepackage{lscape}
\usepackage{graphicx}
\usepackage{placeins}
\usepackage{fixltx2e}
\usepackage{titlesec}
\renewcommand*{\thechapter}{\arabic{chapter}.0}
\renewcommand*{\thesection}{\arabic{chapter}.\arabic{section}}
\renewcommand*{\chaptername}
\titleformat{\chapter}[block]
{\normalfont\huge\bfseries}{\chaptertitlename\ \thechapter}{20pt}{\Huge}
\begin{document}
\chapter{Introduction}
\section{section1}
\end{document}
My questions:
The title now sits slightly indented on the page e.g.
1.0 Introduction
Is there a way to make it flush with the margin?
- My contents now reads: 1.0Introduction etc.
Is there a way to create space between the number and the title?
Thanks in advance



titlesecto format it or can you use onlyreportclass and just change the chapter format? – Sigur Jan 26 '14 at 12:46I need a way of creating a space between the 1.0 and the word introduction.
– Suzanne Jan 26 '14 at 13:50