縮寫列表而不顯示頁面

縮寫列表而不顯示頁面

事實上,我想設定一個縮寫列表,但是當顯示縮寫時,它們包含了不正確的頁碼,我不希望該頁碼出現在縮寫列表中,這裡是我使用的程式碼:

\immediate\write18{makeindex \jobname.nlo -s nomencl.ist -o \jobname.nls}
\documentclass[12pt]{report}

\usepackage[utf8]{inputenc}
\usepackage{framed}
\usepackage{cclicenses}
\usepackage{makecell}
\usepackage[french]{babel}
\usepackage{setspace}
\usepackage{titlesec}
\usepackage[refpage]{nomencl}
\makenomenclature
\setcounter{secnumdepth}{4}
\setcounter{tocdepth}{4}
\usepackage[justification=centering]{caption}
\usepackage{etoolbox} 
\usepackage[a4paper,right=20mm,left=25mm,top=20mm, bottom=20mm]{geometry}
\makeatletter
\titleformat{\chapter}[display]
 {\normalfont\huge\bfseries}{\chaptertitlename\ \thechapter}{20pt}{\Huge}


\titlespacing*{\chapter}{0pt}{0pt}{20pt}

\makeatother
\title {thesis title}
\titleformat{\paragraph}
{\normalfont\normalsize\bfseries}{\theparagraph}{1em}{}
\titlespacing*{\paragraph}
{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex}
\begin{document}
\maketitle
\renewcommand{\nomname}{Liste des abréviations}
\printnomenclature
\chapter*{Introduction générale}
Blablablablablablablablablablablablablablalabla\\blablablablablablablabla 

Modern World (MW) \nomenclature{MW}{: Modern World}
\doublespacing
\end{document}

答案1

刪除頁碼是否不應出現在縮寫清單中的refpage選項。nomencl

\immediate\write18{makeindex \jobname.nlo -s nomencl.ist -o \jobname.nls}
\documentclass[12pt]{report}

\usepackage[utf8]{inputenc}
\usepackage{framed}
\usepackage{cclicenses}
\usepackage{makecell}
\usepackage[french]{babel}
\usepackage{setspace}
\usepackage{titlesec}
\usepackage{nomencl}
\makenomenclature
\setcounter{secnumdepth}{4}
\setcounter{tocdepth}{4}
\usepackage[justification=centering]{caption}
\usepackage{etoolbox} 
\usepackage[a4paper,right=20mm,left=25mm,top=20mm, bottom=20mm]{geometry}
\makeatletter
\titleformat{\chapter}[display]
 {\normalfont\huge\bfseries}{\chaptertitlename\ \thechapter}{20pt}{\Huge}


\titlespacing*{\chapter}{0pt}{0pt}{20pt}

\makeatother
\title {thesis title}
\titleformat{\paragraph}
{\normalfont\normalsize\bfseries}{\theparagraph}{1em}{}
\titlespacing*{\paragraph}
{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex}
\begin{document}
\maketitle
\renewcommand{\nomname}{Liste des abréviations}
\printnomenclature
\chapter*{Introduction générale}
Blablablablablablablablablablablablablablalabla\\blablablablablablablabla 

Modern World (MW) \nomenclature{MW}{: Modern World}
\doublespacing
\end{document}

相關內容