OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

virtio-comment message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: [PATCH] html: add missing enumitem package


makediffhtml.sh currently fails with:

! Missing number, treated as zero.
<to be read again>
                   \c@*
l.25850 \begin{enumerate}[label=\alph*
                                      .]
?
! Emergency stop.
<to be read again>
                   \c@*
l.25850 \begin{enumerate}[label=\alph*
                                      .]

Some web searches turned up suggestions to use enumitem and in fact,
virtio.tex already does this - but virtio-html.tex doesn't.

Adding \usepackage{enumitem} in virtio-html.tex too fixes the issue.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 virtio-html.tex | 1 +
 1 file changed, 1 insertion(+)

diff --git a/virtio-html.tex b/virtio-html.tex
index c822a99..48c633d 100644
--- a/virtio-html.tex
+++ b/virtio-html.tex
@@ -31,6 +31,7 @@
 \usepackage{tabularx}
 \usepackage{underscore}
 \usepackage{xstring}
+\usepackage{enumitem}
 \usepackage{chngcntr}
 \counterwithout{footnote}{chapter}
 
-- 
MST



[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]