\clearpage
\phantomsection
\addcontentsline{toc}{backmatter}{List of Symbols}
\input{list_of_symbols}
The way that I handled my list of symbols was to use the glossaries package:
I put this in the preamble:
% Create a glossary:
\usepackage[toc,nonumberlist]{glossaries}
\newglossary{symbols}{gls_sym}{glo_sym}{\glssymbolsgroupname}
\loadglsentries{bst_glossary}
\makeglossaries
% There needs to be a \printglossaries statement in the backmatter
% In order to display the glossaries.
And then this at the end of thesis:
% Display the glossary
\glsaddall
\printglossary[type=main]
\printglossary[type=symbols]
This is a little different than how you are trying to achieve this,
but works very well.
Novimir
> --
> You received this message because you are subscribed to the Google Groups "ucsd-thesis" group.
> To post to this group, send email to ucsd-...@googlegroups.com.
> To unsubscribe from this group, send email to ucsd-thesis...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/ucsd-thesis?hl=en.
>
>