'Achieve the same as hitting tab in word
Solution 1:[1]
The idea is to not manually format the list, but let latex do the formatting for you. In theory you could use a table without lines, but instead of reinventing the wheel, use one of the existing packages for abbreviations https://ctan.org/topic/acronym
Here an example using the accro package:
\documentclass{article}
\usepackage{acro}
\usepackage{array}
\DeclareAcronym{afm}{
short=AFM,
long=Atomic force microscope
}
\DeclareAcronym{ii}{
short=ii,
long=Information Technology
}
\begin{document}
\printacronyms[display=all,template=tabular]
\end{document}
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | samcarter_is_at_topanswers.xyz |


