Quiero hacer el capítulo del título comoCapítulo 1. Necesito tu ayuda. No como:
Capítulo 1
necesito tu ayuda
\documentclass{book}
\usepackage{titlesec}
\titlespacing{\chapter}{0pt}{-50pt}{0pt}[0pt]
\titleformat{\chapter}[display] {\bfseries\Large} {\filcenter\MakeUppercase{\chaptertitlename} \Huge\thechapter} {0ex} { \filcenter\Huge }
\begin{document}
\chapter{I need your help}
\end{document}.
Respuesta1
Podrías intentar esto. Juega con el 0.42em
hasta que el colgante te quede bien.
\documentclass{book}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{titlesec}
\titleformat{\chapter}[hang]{\Huge\bfseries}{\chaptertitlename\ \thechapter.}{0.42em}{}
%\titleformat{\chapter}[display]{\normalfont\huge\bfseries}{\chaptertitlename\ \thechapter}{20pt}{\Huge} % imitates the original from `book`
\begin{document}
\chapter{I need your help}
\end{document}
Respuesta2
Sin utilizar paquetes externos, puede modificar la definición de la \@makechapterhead
macro que figura en book.cls
. (Tenga en cuenta que el siguiente enfoque funciona para la book
clase de documento y no se garantiza que funcione en otras clases).
\documentclass{book}
\usepackage{lipsum}% dummy text
\makeatletter
\def\@makechapterhead#1{%
\vspace*{50\p@}%
{\parindent \z@ \raggedright \normalfont
\ifnum \c@secnumdepth >\m@ne
\if@mainmatter
\huge\bfseries \@chapapp\space \thechapter.\space \Huge #1
\par\nobreak
\vskip 40\p@
\fi
\fi
}}
\makeatother
\begin{document}
\chapter{I need your help}
\lipsum[1]
\end{document}
Si quieres que el “Capítulo X” y el título sean del mismo tamaño solo debes escribir:
\huge\bfseries \@chapapp\space \thechapter.\space #1