문서의 일부 섹션을 열거합니다.

문서의 일부 섹션을 열거합니다.

초록은 열거하면 안 되고, 내용 목록은 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}

관련 정보