Hi guys I'm having issues with the recently implemented Glossary in my sharelatex package. When using the glossary tags it works fine in the text but at the end the glossary won't get printed. I have to use a file from my university:
%
% University of Berne
%
% Bachelor thesis template
% Thomas Staub 14.04.2005
%
\documentclass[11pt,a4paper,twoside,openright]{rvsbachelor}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage[a4paper,twoside]{geometry}
\sloppy
%% Additional packages
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% for source code highlighting
% \usepackage{listings}
% \lstloadlanguages{tcl, Perl}
% \lstset{language=tcl, commentstyle=\it, basicstyle=\tiny, keywordstyle=\bf, breaklines=true, frame=single}
% multiple figures with same general caption
\usepackage{subfigure}
\setcounter{lofdepth}{2}
% offers more possibilities in captions
\usepackage{caption}
% Commands for package caption
% - caption
\renewcommand{\captionfont}{\small}
\renewcommand{\captionlabelfont}{\bfseries}
% offers rotation of figures, ...
\usepackage{rotating}
% to support correct hyphenaten, add words with -
% \hyphenation{test-case}
% If a page has no content, make it an empty page (without page numbers ....)
\makeatletter
\def\cleardoublepage{\clearpage\if@twoside \ifodd\c@page\else
\hbox{}
\thispagestyle{empty}
\newpage
\fi\fi}
\makeatother
% check whether we are running pdflatex
\newif\ifpdf
\ifx\pdfoutput\undefined
\pdffalse % we are not running pdflatex
\DeclareGraphicsExtensions{.eps}
\else
\pdfoutput=1 % we are running pdflatex
\pdfcompresslevel=9 % compression level for text and image;
\pdftrue
\DeclareGraphicsExtensions{.pdf}
\fi
\ifpdf
%to make table of contents and index appear in bookmarks
\usepackage{tocbibind}
%refs also as links
\usepackage[pdftex,plainpages=false]{hyperref}
%plainpages=false: enable links although page numbering is reset after title
%backref, pagebackref]{hyperref}
%\usepackage[pdftex]{color}
%\usepackage[pdftex]{thumbpdf}
\else
%url must be escaped. (this works fine in dvi)
\usepackage{url}
\fi
\usepackage[nomain, acronym, toc]{glossaries}
\author{Adrian Kurt}
\title{title of the thesis}
\date{2014}
\makeglossaries
\input{acronyms}
% document start
\begin{document}
\maketitle
\thispagestyle{empty}
\mbox{}
\newpage
\pagenumbering{roman}
\tableofcontents{}
\listoffigures{}
\listoftables{}
\cleardoublepage
\setcounter{page}{1} % Reset page numbering to 1
\pagenumbering{arabic} % Arabic page numbers
% Advice: split up your thesis in multiple files, i.e. one file for one section
\input{intro}
\input{theory}
\input{practical}
\input{discussion}
\input{th_bibliography}
\printglossary[title=List of Terms,toctitle=Terms and abbreviations]
\printglossary[title=some title, type=\acronymtype]
% no output here of the glossary
\end{document}
any ideas what the problem could be?