Аннотация не должна быть пронумерована, список содержания должен начинаться с I (римские цифры), а первая глава должна начинаться с 1 (обычные цифры). Как это сделать?
\documentclass[11pt,letterpaper]{report}
%\usepackage{etoolbox}
\usepackage{titlesec}
\begin{document}
{
\titleformat{\chapter}[block]{\filcenter\Huge\bfseries}{}{0pt}{}
\titlespacing{\chapter}{0pt}{0pt}{40pt}
\chapter*{ABSTRACT}
}
%\chapter*{\makebox[\linewidth]{ABSTRACT}}%\chapter*{\centering Abstract}
El principal mecanthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis intro
\section{Exp}
this Exp SECTION
\tableofcontents
\chapter{ETAPA2}
\label{cap:experimental}
this intro
\section{Exp2}
this Exp SECTION
\end{document}
решение1
На основеhttps://tex.stackexchange.com/a/408118/36296Вы можете сделать что-то вроде этого:
\documentclass[11pt,letterpaper]{report}
%\usepackage{etoolbox}
\usepackage{titlesec}
\newcommand\frontmatter{%
\cleardoublepage
% \@mainmatterfalse
\pagenumbering{roman}
}
\newcommand\mainmatter{%
\cleardoublepage
% \@mainmattertrue
\pagenumbering{arabic}
}
\newcommand\backmatter{%
\if@openright
\cleardoublepage
\else
\clearpage
\fi
% \@mainmatterfalse
}
\begin{document}
{
\titleformat{\chapter}[block]{\filcenter\Huge\bfseries}{}{0pt}{}
\titlespacing{\chapter}{0pt}{0pt}{40pt}
\chapter*{ABSTRACT}
}
\thispagestyle{empty}
%\chapter*{\makebox[\linewidth]{ABSTRACT}}%\chapter*{\centering Abstract}
El principal mecanthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis introthis intro
\section{Exp}
this Exp SECTION
\frontmatter
\tableofcontents
\mainmatter
\chapter{ETAPA2}
\label{cap:experimental}
this intro
\section{Exp2}
this Exp SECTION
\end{document}