In this question, the following solution was offered for creating an indented environment.
\def\changemargin#1#2{\list{}{\rightmargin#2\leftmargin#1}\item[]}
\let\endchangemargin=\endlist
I want to understand this code better.
First of all, I think I get the basic idea of \def and \let, and the difference between them. But does anyone have a good reference for the finer points of these?
Also, I see this \list{} command popping up in a lot of places, and I don't understand what it does. Googling didn't bring a lot of help. And what is this item[] thing doing?
\list{}command and what it does. Then I could figure out how it accomplishes what you say. – Eric Auld Sep 30 '16 at 17:58