I am using acronym package to create the list of Acronyms. I am using Acronym1.tex containing the definition of all the acronyms. However here is the list of problems I am facing.
I have to sort the list manually every time I need a sorted list in the pdf. I am not aware of the options with
usepackage. I am currently using\usepackage[printonlyused,withpage]{acronym}Is it possible to order the Acronym list? Currently what I am getting is
<short>:<Description>..........<Page Number>
I would prefer something like this :
<short>\t<Description>..........<Page Number>
Example:
\documentclass{article}
\usepackage[colorlinks]{hyperref}
\usepackage[printonlyused,withpage]{acronym}
\begin{document}
\section{Intro}
In the early nineties,\ac{TDMA}, \ac{IEEE} , \ac{GSM}, \ac{WPAN} \ac{FPGA}
\section{Acronyms}
\begin{acronym}
\acro{TDMA}{Time Division Multiple Access}
\acro{WPAN}{Wireless Personal Area Network}
\acro{GSM}{Global System for Mobile communication}
\acro{FPGA}{Field Programmable Gate Array}
\acro{IEEE}{Institute of Electrical and Electronics Engineers}
\end{acronym}
\end{document}
If you are using acronym package and know the options on how to use it, that will be really helpful.
I could not find any relevant information, in the documentation.