In my document the List of Symbols is preceded by a List of Figures and Tables, within which there are several \gls{} items. I wonder whether it is possible to suppress entries in the number list for the List of Figures and List of Tables to appear in List of Symbols?
Thanks,
Olga
Code: Select all
\documentclass[11pt, oneside]{book}
\usepackage[T1]{fontenc}
\usepackage[british]{babel}
\usepackage[pagestyles,raggedright]{titlesec}
\usepackage[nottoc]{tocbibind}
\usepackage{url,natbib}
\titleformat*{\chapter}{\Huge\bfseries\rm}\titleformat*{\section}{\LARGE\bfseries\rm}
\titleformat*{\subsection}{\Large\bfseries\rm}
\titleformat*{\subsubsection}{\large\bfseries\rm}
\newpagestyle{main}[\small\sffamily\rm]{
\headrule
\sethead{\thechapter\enspace\chaptertitle}{}{\thepage}}
\usepackage[]{appendix}%for appendices
\usepackage[acronym, sort=use, toc]{glossaries}
\usepackage{glossary-long}
\glossarystyle{long}
\newglossary[slg]{symbolslist}{syi}{syg}{List of Symbols}
\newglossary[alg]{acronymslist}{acr}{acn}{List of Acronyms}
\renewcommand*{\glspostdescription}{}
\setlength{\glsdescwidth}{0.95\linewidth}
\makeglossaries
\loadglsentries{listofsym}
\loadglsentries[acronym]{listofacr}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\pagestyle{empty}
\include{title}
\pagenumbering{roman}
\chapter{Summary}
\tableofcontents
\listoftables
\listoffigures
\clearpage
\printglossary[type=symbolslist]
\printglossary[type=acronymslist]
\clearpage
\pagenumbering{arabic}
\pagestyle{main}
\chapter{SomeChapters.tex}
some text
\end{document}