How would I go about removing chapter numbering in a book document class?
i.e.
Code: Select all
\chapter{Foo}
\section{Bar}
\subsection{Baz}
\subsection{Qux}
Code: Select all
\chapter{Foo}
\section{Bar}
\subsection{Baz}
\subsection{Qux}
Code: Select all
\documentclass[a4paper,10pt]{book}
\usepackage{chngcntr}
\counterwithout{section}{chapter}
\begin{document}
\chapter*{Foo}
\section{Bar}
\subsection{Baz}
\subsection{Qux}
\end{document}