[Tex/LaTex] Reduce line spacing in minitoc package

line-spacingminitoctable of contents

I am using the minitoc package to add chapter TOC's in a thesis. The entire document (including the main table of contents) is doublespaced, but I want the chapter toc's to be single spaced. I specify the minitoc options in the document preamble as:

\usepackage[tight,k-tight]{minitoc}

The resulting chapter toc's are still double-spaced, though.

How does one override the properties of the main table of contents to produce a single-spaced minitoc?

Best Answer

Assuming you're using the setspace package and its command \doublespacing to switch to, well, double-spacing, you can always enclose some part that needs to be singlespaced in a singlespace environment. Alternatively, you could issue the command \singlespacing before the start of the minitoc and then issue a \doublespacing command when it's done, as in

...
\singlespacing
\dominitoc
\doublespacing % or \onehalfspacing, or whatever
...