我有一个简单的文档:
\documentclass[a4paper,12pt]{article}
\usepackage{enumitem}
\newlist{inlinedesc}{description*}{1}
\setlist[inlinedesc]{itemjoin={{ $\odot$ }}, itemjoin*={{ and }}}
\setlength{\parindent}{0pt}
\setlength{\parskip}{7.2pt}
\begin{document}
\begin{fussy}
Here comes \verb+inlinedesc+:
\begin{inlinedesc}
\item[first] about the first item
\item[second] THIS CANNOT BE EMPTY
\item[third] about the third item
\item[first] about the first item
\item[second] THIS CANNOT BE EMPTY
\item[third] about the third item
\end{inlinedesc}
more text ... more text ...
\end{fussy}
\end{document}
如何去除标有红色的水平空格?
我宁愿将内容左对齐,最好也用连字符连接(但不是列表项头/术语:只是列表项主体)。
谢谢!