
En este momento obtengo el título de mi capítulo en la siguiente fuente, de tamaño grande y en negrita:
Sin embargo, quiero cambiarlo al siguiente formato, que es de tamaño normal, texto normal, con tipo de fuente normal y está centrado:
Sólo me refiero al texto de "Introducción" en las figuras anteriores. Aquí está mi código general:
\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}
Editar: ahora que he usado el código recomendado por Hafid Boukhoulda, puedo cambiar la fuente, pero me enfrento a un problema diferente: mi número de página comienza en una página en blanco y el texto de introducción comienza en la página siguiente. Si esta claro. Mi código es:
\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}
¡Muchas gracias!
Respuesta1
\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}