I use the centerentry command of
Using icons left of the text and symbols in the text line
But as you see in the example, the two symbol lists are not well grouped. Do you have any idea?
vertical to get some scape before and after the headlines?
horizontal to make some shifting? The command
assmargindoes not work. Is there a other possible?
\documentclass{article}
\usepackage{graphicx, tabularx}
\usepackage[nopar]{lipsum}
\usepackage[export]{adjustbox}
\newenvironment{centerentry}[2][]
{\renewcommand{\tabularxcolumn}[1]{m{##1}}
\noindent
\tabularx{\linewidth}{ @{} m{\imagecolwidth} X @{} }
\includegraphics[width=\linewidth,#1]{#2} &
}{%
\endtabularx%
}
\newlength{\imagecolwidth}
\setlength{\imagecolwidth}{2em}
\sloppy% Just for this example
\begin{document}
\section {Write some text}
Some important symbols (I)\\
%\begin{addmargin}[0.2cm]{0.3cm} %%% DOES NOT WORK
\begin{centerentry}{example-image-a} Write some text to get more lines. Write some text to get more lines. \end{centerentry}
\begin{centerentry}{example-image-a} Write some text to get more lines. Write some text to get more lines. \end{centerentry}
\begin{centerentry}{example-image-a} Write some text to get more lines. Write some text to get more lines. \end{centerentry}
\begin{centerentry}{example-image-a} Write some text to get more lines. Write some text to get more lines. \end{centerentry}
\begin{centerentry}{example-image-a} Write some text to get more lines. Write some text to get more lines. \end{centerentry}
\begin{centerentry}{example-image-a} Write some text to get more lines. Write some text to get more lines. \end{centerentry}
\begin{centerentry}{example-image-a} Write some text to get more lines. Write some text to get more lines. \end{centerentry}
\begin{centerentry}{example-image-a} Write some text to get more lines. Write some text to get more lines. \end{centerentry}
\begin{centerentry}{example-image-a} Write some text to get more lines. Write some text to get more lines. \end{centerentry}
\begin{centerentry}{example-image-a} Write some text to get more lines. Write some text to get more lines. \end{centerentry}
%\end{addmargin} %%% DOES NOT WORK
Some important symbols (II)\\
%\begin{addmargin}[0.2cm]{0.3cm} %%% DOES NOT WORK
\begin{centerentry}{example-image-a} Write some text to get more lines. Write some text to get more lines. \end{centerentry}
\begin{centerentry}{example-image-a} Write some text to get more lines. Write some text to get more lines. \end{centerentry}
\begin{centerentry}{example-image-a} Write some text to get more lines. Write some text to get more lines. \end{centerentry}
\begin{centerentry}{example-image-a} Write some text to get more lines. Write some text to get more lines. \end{centerentry}
\begin{centerentry}{example-image-a} Write some text to get more lines. Write some text to get more lines. \end{centerentry}
\begin{centerentry}{example-image-a} Write some text to get more lines. Write some text to get more lines. \end{centerentry}
\begin{centerentry}{example-image-a} Write some text to get more lines. Write some text to get more lines. \end{centerentry}
\begin{centerentry}{example-image-a} Write some text to get more lines. Write some text to get more lines. \end{centerentry}
\begin{centerentry}{example-image-a} Write some text to get more lines. Write some text to get more lines. \end{centerentry}
\begin{centerentry}{example-image-a} Write some text to get more lines. Write some text to get more lines. \end{centerentry}
%\end{addmargin} %%% DOES NOT WORK
\end{document}


%at the line-end for\renewcommandin your definition ofcenterentry. – Werner Jan 10 '18 at 19:41