使用会议缩写作为要点+分组

使用会议缩写作为要点+分组

本质上,我正在制作一份出版物清单,我想使用会议缩写作为要点。以下是一个例子:

ACE'16   A bib ref

FSE'15   A bib ref

ACE'15   A bib ref
         An another bib ref from the same conf

可以做这样的事吗?

答案1

这是设置缩写列表的示例。

\documentclass{article}
\usepackage{lipsum}

\newcommand{\myitem}[1]% #1 = abbreviation
{\smallskip\par\noindent\llap{\makebox[\leftskip][l]{#1}}\ignorespaces}

\begin{document}

\settowidth{\leftskip}{MMM'02\hspace{\itemsep}}% longest abbreviation
\myitem{ACE'16} some text here.% \cite?
\myitem{FSE'15} \lipsum[1-2]
\leftskip=0pt% end of indentation

\end{document}

相关内容