#1: Glossary. As I try to avoid using too many packages I want to fix the "problem" with the internal options provided by the memoir class, but I can't see any information about this in the manual. The thing I'm trying to do is to increase the spacing between the glossary key and its description. It seems like the default setting for this is a single empty space, but I'd prefer to increase this to a size which makes it easier to read (i.e. 1in). With the nomenclature package this is quite easy, but I just can't find out how I do this with the options the memoir class provides.
For now the options I use for the glossary are
Code: Select all
\makeglossary[abbvr]
\renewcommand{\glossaryname}{List of Symbols and Abbreviations}
\glossaryintoc
\renewcommand{\memgloterm}[1]{#1}
\renewcommand{\memglodesc}[1]{\textit{#1}
\renewcommand{\memglonum}[1]{}
\renewcommand{\glossaryspace}[1]{}
I'm trying to make the caption number font to be in bold and in an smaller font than the rest of the document. In addition I want the caption title font to be like the normal font, but smaller (same size as caption number font).
After the reading in the manual I assumed this code would be enough, but when I compile nothing changes.
Code: Select all
\captionnamefont{\small\bfseries}
\captiontitlefont{\small}
\captiondelim{: }
Code: Select all
\makeatletter
\renewcommand{\fnum@figure}{\small\textbf{\figurename~\thefigure}}
\renewcommand{\fnum@table}{\small\textbf{\tablename~\thetable}}
\makeatother
Code: Select all
\usepackage[hang,small,bf]{caption}
