如何去掉章节编号后面的点?

如何去掉章节编号后面的点?

我研究了有关该主题的大量问题和答案,但找不到可行的解决方案。

\documentclass[10pt, a4paper] {report}
\renewcommand{\baselinestretch}{1.25} 
\usepackage[dutch]{babel}
\usepackage[T1]{fontenc}
\usepackage{palatino}
\usepackage[utf8]{inputenc}
\usepackage{titlesec}

\titleformat{\section}
{\normalfont\Large\bfseries}{\thesection}{1em}{}
\titleformat{\subsection}
{\normalfont\normalsize\bfseries}{\thesubsection}{1em}{}

\usepackage{geometry}
\geometry{left=5cm, right=2.5cm, top=0.5cm, bottom=3cm, textheight=20cm}
\setlength {\parindent}{0pt}
\usepackage[document]{ragged2e}

\usepackage{fancyhdr}
\fancypagestyle{plain}{}
\pagestyle{fancy}
\fancyhf{}
\lfoot{Aanwijzingen vooraf}
\rfoot{\thepage}

\makeatletter
\def\@makechapterhead#1{%
  \vspace*{50\p@}%
  {\parindent \z@ \raggedright \normalfont
    \ifnum \c@secnumdepth >\m@ne
      %\if@mainmatter
        %\LARGE\bfseries \@chapapp\space \thechapter
        \LARGE\bfseries \thechapter.\space%
        %\par\nobreak
        %\vskip 20\p@
      %\fi
    \fi
    \interlinepenalty\@M
    \LARGE \bfseries #1\par\nobreak
    \vskip 40\p@
     }}
\makeatother

查看图片了解当前结果。 目前的结果

相关内容