Yesterday I made my first steps into LaTeX. However, I have a problem. I included some screenshots to explain my problem.
Screenshot 1 Here you see the problem. Normally, my chapter is "chapter 1". But automatically there is "hoofdstuk 1" (which is Dutch for chapter 1).
Screenshot 2 I found out you can supress this with following code:
Code: Select all
\addto\captionsdutch{
\renewcommand\chaptername{}}
\renewcommand{\thechapter}{}
Screenshot 3 When I use following code:
Code: Select all
\addto\captionsdutch{
\renewcommand\chaptername{}}
Anyone has a solution?
PS: in addition, I give my whole code.
Code: Select all
\documentclass[a4paper,11pt]{report}
\usepackage[dutch]{babel}
\addto\captionsdutch{
\renewcommand\chaptername{}}
%\renewcommand{\thechapter}{}
\usepackage[latin1]{inputenc}
\usepackage{palatino}
\usepackage{graphicx}
\newcommand{\nroman}{\renewcommand{\thepage}{\roman{page}}\setcounter{page}{0}}
\newcommand{\narabic}{\renewcommand{\thepage}{\arabic{page}}\setcounter{page}{1}}
\begin{document}
\global\emergencystretch = .3\hsize
\nroman
\newpage
\newpage
\narabic
\chapter{Chapter 1 (test)}
\section{section 1}
\subsection{subsection 1}
\chapter{Chapter 2 (test)}
\section{section 1}
\subsection{subsection 1}
\end{document}