Easylist 后的间距问题

Easylist 后的间距问题

宏的创建者Easylist是@ereg (Easylist 里面的 adjustwidth

我的 MWE:

\documentclass{article}
\usepackage{amssymb}
\usepackage[ampersand]{easylist}
\usepackage{changepage}
\usepackage{lipsum}

\makeatletter
\newbox\Easylist@box
\newenvironment{Easylist}
{\par\xdef\Easylist@tpd{\the\prevdepth}%
\setbox\Easylist@box=\vbox\bgroup
\dimen@=\@totalleftmargin
\@parboxrestore
\leftskip=\dimen@
\prevdepth\Easylist@tpd
\begin{easylist}}
{\end{easylist}\xdef\Easylist@tpd{\the\prevdepth}\egroup
\unvbox\Easylist@box\par\prevdepth\Easylist@tpd}
\makeatother

\usepackage{amssymb}
\usepackage[ampersand]{easylist}
\ListProperties(Hide=100,Hang=true,FinalSpace=0.5cm,Align=fixed,
Margin1=0.5cm,Margin2=1.5cm,Margin3=2.5cm,Margin4=3.5cm,
Margin5=4.5cm,Margin6=5.5cm,Margin7=6.5cm,Space=0.15cm,Space*=0.15cm,
Style1*=\textbullet\hspace{0.25cm},%
Style2*=$\circ$\hspace{0.25cm},%
Style3*=\tiny$\blacksquare$\hspace{0.25cm},%
Style4*=\tiny$\square$\hspace{0.25cm})

\begin{document}
\begin{adjustwidth}{2cm}{}
\section{Section1}
    \lipsum[1]
\section{Section2}
    \begin{Easylist}
        & 1
        & 2
        & 3
        & 4
        & 5
    \end{Easylist}
\section{Section3}
    \begin{Easylist}
        & 1
        & 2
        & 3
        & 4
        & 5
    \end{Easylist}
\lipsum[1]
\end{adjustwidth}
\end{document}

在此处输入图片描述

我如何定义之后的间距easylist

相关内容