목차 페이지 - 로마 숫자 페이지 번호 포함

목차 페이지 - 로마 숫자 페이지 번호 포함

MiKTex 2.9를 사용하고 있습니다. 내 목차 페이지에 로마 숫자 페이지 번호와 함께 '약어' 페이지를 포함하고 싶습니다. 그러나 명령을 사용하면 \section{section name}제목에 섹션 번호가 표시됩니다. 그리고 를 사용하면 \section*{section name}목차 페이지에 제목이 표시되지 않습니다. 나는 또한Scrbook을 사용하여 TOC의 여러 장을 제외한 모든 장의 페이지 번호를 표시하지 않는 방법은 무엇입니까?그런데 '정의되지 않은 제어 오류'가 발생합니다.

조언을 해주실 수 있나요? MWE를 첨부했습니다.

    \documentclass[a4paper,11pt]{article}
\usepackage{color}
\usepackage{graphicx, epstopdf}
\usepackage{gensymb}
\usepackage{times}
\usepackage{adjustbox}
\usepackage{tabulary}
\usepackage{tabularx}
\usepackage{booktabs,caption, makecell}
\usepackage{pdflscape,afterpage,caption}
\usepackage[british]{babel}
\usepackage[backend=bibtex, citestyle=ieee, bibstyle=ieee]{biblatex}
\usepackage[section]{placeins}%Allows you to permanently fix figures. 

\begin{document}
\pagenumbering{roman}
\newpage
\tableofcontents
\newpage
\section*{Abbreviations}
\begin{table}[ht]
\setlength\tabcolsep{60pt}
\centering
  \small
 % your table
    \hspace*{-18mm}%
\begin{tabular}{cc}
\toprule
{Abbreviation}&{Explanation}\\ [0.5ex]
\midrule
Item1&Item1\\
Item1&Item1\\
Item1&Item1\\
Item1&Item1\\
Item1&Item1\\
Item1&Item1\\
Item1&Item1\\
Item1&Item1\\
\bottomrule
 \end{tabular}%
    \hspace*{-12mm}%
\label{table:ETD Raman}
\end{table}
\newpage
\pagenumbering{arabic}
\section{Test 1}
Video provides a powerful way to help you prove your point. When you click Online Video, you can paste in the embed code for the video you want to add. You can also type a keyword to search online for the video that best fits your document.

\end{document}

미리 감사드립니다!

답변1

\addcontentsline{<file>}{<kind>}{<text>}다음과 같이 바로 뒤에 표준 LaTeX 명령을 사용하십시오 \section*{Abbreviations}.

\section*{Abbreviations}
\addcontentsline{toc}{section}{Abbreviations}

번호가 지정되지 않은 섹션 스타일 제목과 페이지 번호를 .tocToC에 인쇄하기 위해 파일에 넣습니다.

관련 정보