Tagged Questions
4
votes
1answer
56 views
Problems with xparse and enumerate
I am trying to get the following document to work
\documentclass[10pt]{article}
\usepackage{enumitem}
\newcounter{foo}
\newcounter{bar}[foo]
\addtocounter{foo}{1}
\usepackage{xparse}
...
5
votes
1answer
172 views
How can I place a marginnote inside a description (or other list environment)
I have a macro (defined with the xparse package) that creates a marginnote. It works as I would like when prepended to normal paragraph text:
\NewDocumentCommand\dates{m g}{%
\IfNoValueTF{#2}
...