3

enter image description here

This picture shows my actual chapter design. It contains the Norwegian text "Kapittel" for chapter, and I want to get rid of it. How can I do this?

Ruben
  • 13,448

1 Answers1

4

You can use the titlesec package to tweak this page and remove "Chapter 1".

With a litle sample inspired from page 23 of titlesec documentation

\documentclass[a4paper]{report}
\usepackage{titlesec}

\titleformat{\chapter}[display]{\normalfont\huge\bfseries}{}{20pt}{\Huge}

\begin{document}

\chapter{My chapter title}

some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. some text. 

\end{document}
sebtic
  • 51
  • 3
    Hi, welcome to TeX.SX. It would be nice if you added a small (compilable) example, demonstrating how to do it as well. – Torbjørn T. Nov 08 '13 at 13:21
  • This removes the chapter number too - the poster wants to retain that and just remove the word Kapitel. – Andrew Swann Nov 12 '13 at 08:06
  • 1
    To retain chapter number uses : \titleformat{\chapter}[display]{\normalfont\huge\bfseries}{\thechapter}{20pt}{\Huge} – sebtic Nov 12 '13 at 08:58
  • @sebtic: Thank you! The above line of code leads to "1 \n 'Chaptername'". How can I remove the linebreak and make it look more like a section header? (I'm using a beautiful book class, though I'm closer to writing an article actually.) – stats-hb Apr 27 '16 at 14:09
  • Ah, got it. \titleformat{\chapter}[display]{\normalfont\huge\bfseries}{}{0pt}{\thechapter \quad \Huge} does the trick for me – stats-hb Apr 27 '16 at 14:23