I have written my whole document without using any packages like nomencl or acronym because it wasn't necessary in my case, that means I only have a few abbreviations which should fit on one page easily.
I'd like to do that by hand, that means manually within a tabular (or maybe longtable?) environment. The problem is, I cannot fix the abbreviations column on the left while at the same time increasing the distance to the column on the right. If possible I'd like to fill the distance with cdot.
So the list should consist of 2 columns, the left fixed with variable/changable distance to the right.
Here is my MWE with tabularx. You will see the prob if you compile: every word fills 2 lines instead of just one if the distance is too small (in this case 3cm).
\documentclass[a4paper, 12pt, headsepline, smallheadings]{scrreprt}
\usepackage{tabularx}
\begin{document}
\begin{tabularx}{3cm}{XX}
US & United States \\
EU & European Union \\
Gvmt & Government \\
\end{tabularx}
\end{document}
Let me know. If it's not possible, I might have to use one of the above packages. But I think that's not the most effective way in my case.
edit: This seems to be a better MWE, but I am still not sure which environment is best in this case and which kind of columns are.
\documentclass[a4paper, 12pt, headsepline, smallheadings]{scrreprt}
\usepackage{tabularx}
\begin{document}
\begin{tabular}{p{4cm}p{12cm}}
US & United States \\
EU & European Union \\
Gvmt & Government \\
\end{tabular}
\end{document}
I have found this: Creating abbreviations list with manual entries but it does not add cdots and it doesn't work for longer abbreviations because the distance b/w the columns is too small. I'd like to have control over the distance.
Thanks.






tabbingenvironment. – Marco Daniel Dec 12 '13 at 20:12cdotson the distance. – TomM Dec 12 '13 at 20:22dotfillintabbing. It doesn't seem to work the usual way. – TomM Dec 12 '13 at 21:42