章タイトルのフォントの種類とサイズを変更するにはどうすればよいですか?

章タイトルのフォントの種類とサイズを変更するにはどうすればよいですか?

現在、章のタイトルは、次の大きな太字のフォントで表示されています。

ここに画像の説明を入力してください

ただし、これを次の形式(標準サイズ、標準テキスト、標準フォント タイプ、中央揃え)に変更します。 ここに画像の説明を入力してください

私が言っているのは、上の図の「はじめに」のテキストだけです。これが私の一般的なコードです:

\documentclass[12pt]{report}
\usepackage[left=1.5in, right=1in, top=1in, bottom=1.5in]{geometry}
...
\begin{document}
...
\pagenumbering{arabic}
\setcounter{page}{1}
\begin{center}
INTRODUCTION
\end{center}
Hi there! I want my chapter text and the section text to be the same default font
...
\end{document}

編集: Hafid Boukhoulda が推奨するコードを使用したので、フォントを変更できるようになりましたが、ページ番号が空白ページから始まり、紹介文が次のページから始まるという別の問題に直面しています。明確であれば。私のコードは次のとおりです。

\fancyhf{}
\fancyhead[C]{\thepage}
\pagestyle{fancy}

\titleformat{\chapter}{\normalfont\centering}{}{0pt}{}
\titlelabel{}

\titlespacing*{\chapter}{0pt}{-50pt}{10pt}


\begin{document}
\setlength{\headheight}{50pt} %to note where the header lies.
\setlength{\headsep}{15pt} %to set the distance between header and the first line after it.

....

\pagenumbering{arabic}
\setcounter{page}{1}

\begin{center}
\chapter{INTRODUCTION}
\end{center}

どうもありがとう!

答え1

\documentclass[12pt]{report}
\usepackage[left=1.5in, right=1in, top=1in, bottom=1.5in]{geometry}

\usepackage[rm,tiny]{titlesec}

\titleformat{\chapter}{\normalfont\centering}{}{0pt}{}

\titlelabel{}

\begin{document}

%\pagenumbering{arabic}
%\setcounter{page}{1}

\chapter{The chapter title in normal font}
\section{The section title in normal font}

The paragraph in normal font

\end{document}

ここに画像の説明を入力してください

関連情報