I wanted to remove the word chapter when I do \chapter{title} I added the command 1, but I do not have anymore the numbering, I added the command 2 but when I do \ chapter*{Intro} he puts me 0. Intro
Main.Rmd
---
documentclass: report
output:
pdf_document:
includes:
in_header: preambule.tex
word_document: default
subparagraph: yes
---
\tableofcontents
\chapter*{Intro}
\addcontentsline{toc}{chapter}{Intro}
\chapter{Title}
preambule.tex
\usepackage{titlesec}
%\titleformat{\chapter}[display]{\normalfont\bfseries}{}{0pt}{\Huge} **command 1**
\titleformat{\chapter}[display]{\normalfont\bfseries}{}{0pt}{\Huge\thechapter.\ } **command 2**