目次ページ - ローマ数字のページ番号を含める

目次ページ - ローマ数字のページ番号を含める

私は 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

次のように、標準の LaTeX コマンドをas の\addcontentsline{<file>}{<kind>}{<text>}直後に使用します\section*{Abbreviations}

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

これにより、番号なしのセクション スタイルの見出しとページ番号がファイルに追加され、.toc目次に印刷されます。

関連情報