Document Classes ⇒ Forcing line-spacing in the acronym package
Forcing line-spacing in the acronym package
\RequirePackage{acronym}
\renewcommand{\ac}[1]{%
\expandafter\ifx\csname ac@#1\endcsname\relax%
\acf{#1}%
\expandafter\gdef\csname ac@#1\endcsname{x}%
\else%
\acs{#1}%
\fi}
I don't know if it's default, but the spacing in the list of acronyms looks like 2-2.5 lines. I would like to single space this list to reduce the number of pages taken. I already set my main document to onehalfspace using the setspace package. I tried including the singlespace line in my acronym.tex file but that doesn't affect it.
How can I force the acronym.tex spacing to be single line?
My 'master document' structure:
...
\usepackage{setspace}
...
\begin{document}
...
\frontmatter
\input{acronyms}
...
\mainmatter
\onehalfspace
...
\end{document}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Forcing line-spacing in the acronym package
No, it is not. Since you are using a non-standard document class, this class must be responsible for that behaviour.slp58 wrote:...I don't know if it's default, but the spacing in the list of acronyms looks like 2-2.5 lines.
Try using the singlespacing environmnet provided by the setspace package:slp58 wrote:...I would like to single space this list to reduce the number of pages taken. I already set my main document to onehalfspace using the setspace package. I tried including the singlespace line in my acronym.tex file but that doesn't affect it.
How can I force the acronym.tex spacing to be single line?
Code: Select all
...
\frontmatter
\begin{singlespacing}
\input{acronyms}
\end{singlespacing}
...
Re: Forcing line-spacing in the acronym package
If anyone has the time I would really appreciate it tell me how I can reduce the acronym spacing? Thanks
- Attachments
-
- mcsThesis.cls
- (32.45 KiB) Downloaded 487 times