
Só tem que afetar o primeiro capítulo, os demais têm que ficar intactos, eu tenho esse código
\documentclass{book}
\usepackage{ragged2e}
\begin{document}
\chapter*{ETAPA}
\label{cap:experimental}
this intro
\section{Exp}
this Exp SECTION
\chapter{ETAPA2}
\label{cap:experimental}
this intro
\section{Exp2}
this Exp SECTION
\end{document}
eu preciso deste resultado:
Responder1
Realmente não faz sentido fazer isso apenas para um capítulo não numerado e não para todos eles. De qualquer forma, aqui está.
\documentclass{book}
\usepackage{etoolbox}
\usepackage{showframe} % for showing text block borders
\makeatletter
\newcommand{\differentchapter}[1]{%
\begingroup
\patchcmd{\@makeschapterhead}{50}{20}{}{}%
\patchcmd{\@makeschapterhead}{40}{70}{}{}%
\patchcmd{\@makeschapterhead}{\bfseries}{\centering\bfseries}{}{}%
\chapter*{#1}%
\endgroup
}
\makeatother
\begin{document}
\differentchapter{ETAPA}
this intro
\section{Exp}
this Exp SECTION
\chapter{ETAPA2}
\label{cap:experimental}
this intro
\section{Exp2}
this Exp SECTION
\end{document}