1

I have to create a list of abbreviations. In the list, I have to write the short form on the left side and the fullform on the right side. I don't need a fancy style of creating this list of abbreviations. I just want to do it in the normal text format.

PROBLEM: The spacing between the left side and right side is uneven. I need a list as shown in the following figure:

enter image description here

skm
  • 960

1 Answers1

1

You can use a description environment with the customizations described in Description-like environment with fixed labels width, just add a noitemsep to the options of the list as well, to remove the vertical space between each item.

enter image description here

\documentclass{article}
\usepackage{enumitem}
\begin{document}
\begin{description}[leftmargin=6em,style=nextline,noitemsep]
  \item[AC] Salient object \ldots
  \item[OpenCV] Open Source \ldots 
\end{description}
\end{document}
Torbjørn T.
  • 206,688