i.e. rather than having
UFO Unidentified flying object AFAIK As far as I knowI would like
UFO Unidentified flying object AFAIK As far as I knowDoes anyone know how to do this?
Thank you
UFO Unidentified flying object AFAIK As far as I knowI would like
UFO Unidentified flying object AFAIK As far as I knowDoes anyone know how to do this?
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
\printglossary
or by \glossarystyle
, such asCode: Select all
\glossarystyle{long}
You need to useI have tried doing \printglossary{type=acronyms, long}
style=long
rather than long
Code: Select all
\documentclass{article}
\usepackage[acronym]{glossaries}
\makeglossaries
\newglossaryentry{sample}{name={sample},
description={a sample entry}}
\newacronym{aca}{aca}{a contrived acronym}
\begin{document}
\printglossary
\printglossary[type=acronym,style=long]
\section{Sample}
A \gls{sample} entry and \gls{aca}.
\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