
Это должно повлиять только на первую главу, остальные должны остаться нетронутыми, у меня есть этот код
\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}
Мне нужен этот результат:
решение1
Не имеет смысла делать это только для одной ненумерованной главы, а не для всех. В любом случае, вот она.
\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}