list of symbols

37 views
Skip to first unread message

F.B.

unread,
May 31, 2011, 2:30:27 PM5/31/11
to ucsd-thesis
hello,

i would like to add a list of symbols page (and TOC entry) by
including an existing tex file. in ucsd.cls i have added (under the
list of tables entry):

% \listofsymbols:
\def\listtablename{List of Symbols}

but am not sure how to handle the contents of:

\def\listofsymbols{ ... }

since, for example, simply adding \include{list_of_symbols} gives me
an error.

thanks!

mir amicitas

unread,
May 31, 2011, 3:28:04 PM5/31/11
to ucsd-...@googlegroups.com
Instead of trying to modify ucsd.cls try putting this at the end of
your thesis instead:

\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.
>
>

Reply all
Reply to author
Forward
0 new messages