Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

"Indecision is the basis of flexibility" -- button at a Science Fiction convention.


computers / comp.text.tex / Re: Odd error using inline lists from enumitem

SubjectAuthor
* Odd error using inline lists from enumitemPeter Flynn
`* Re: Odd error using inline lists from enumitemUlrike Fischer
 `- Re: Odd error using inline lists from enumitemPeter Flynn

1
Odd error using inline lists from enumitem

<k35svfFfa3dU1@mid.individual.net>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=6025&group=comp.text.tex#6025

  copy link   Newsgroups: comp.text.tex
Path: i2pn2.org!i2pn.org!news.swapon.de!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: peter@silmaril.ie (Peter Flynn)
Newsgroups: comp.text.tex
Subject: Odd error using inline lists from enumitem
Date: Sun, 22 Jan 2023 22:51:27 +0000
Organization: Usenet Labs Bozon Detector Facility
Lines: 39
Message-ID: <k35svfFfa3dU1@mid.individual.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
X-Trace: individual.net 7RzVxNfMqAGEoVtDcUIXNQIaI4TvOR5YF2UgKoG8nEG7YaYzJP
Cancel-Lock: sha1:tYTH3lPWK+T3qjz9LVAYK33sX8I=
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101
Thunderbird/102.4.2
Content-Language: en-US
 by: Peter Flynn - Sun, 22 Jan 2023 22:51 UTC

I have had the compound error

> ! Missing number, treated as zero.
> <to be read again>
> \c@*
> l.7 \item t
> his way\item that way\item the other way\end{itemize*}.
> ! Missing number, treated as zero.
> <to be read again>
> \c@*
> l.7 \item this way\item t
> hat way\item the other way\end{itemize*}.
> ! Missing number, treated as zero.
> <to be read again>
> \c@*
> l.7 \item this way\item that way\item t
> he other way\end{itemize*}.

when testing the MWE:

\documentclass{article}
\usepackage[inline]{enumitem}
\begin{document}
There are three ways to do this
\begin{itemize*}[label=\emph{\alph*}),itemjoin={{; }},
itemjoin*={{; or }}]
\item this way\item that way\item the other way\end{itemize*}.
\end{document}

I have used this setting for many years without problems, but it's
probably something so obvious I can't see it after a few bottles of the
very fine Trappist beers I was given recently :-)

This is XeTeX, Version 3.14159265-2.6-0.999991 (TeX Live 2019/Debian)
(preloaded format=xelatex)
....
\ProvidesPackage{enumitem}[2019/06/20 v3.9 Customized lists]

Peter

Re: Odd error using inline lists from enumitem

<b6ftjpcmaemd$.dlg@nililand.de>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=6026&group=comp.text.tex#6026

  copy link   Newsgroups: comp.text.tex
Path: i2pn2.org!i2pn.org!news.swapon.de!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: news3@nililand.de (Ulrike Fischer)
Newsgroups: comp.text.tex
Subject: Re: Odd error using inline lists from enumitem
Date: Sun, 22 Jan 2023 23:56:41 +0100
Lines: 17
Message-ID: <b6ftjpcmaemd$.dlg@nililand.de>
References: <k35svfFfa3dU1@mid.individual.net>
Reply-To: news3@nililand.de
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
X-Trace: individual.net al4QSffQtl7PzxyTzhoOsQnXp4tXa56wUsSQ8LxzlolFOTZako
Cancel-Lock: sha1:7AwSK5r5JuTss7Y9Rf5QpgBLBA4=
User-Agent: 40tude_Dialog/2.0.15.41de
 by: Ulrike Fischer - Sun, 22 Jan 2023 22:56 UTC

Am Sun, 22 Jan 2023 22:51:27 +0000 schrieb Peter Flynn:

> I have had the compound error
>
>> ! Missing number, treated as zero.

> when testing the MWE:

> \begin{itemize*}[label=\emph{\alph*}),itemjoin={{; }},

itemize environment don't have counters, so you can't use \alph*,
use \begin{enumerate*} instead.

--
Ulrike Fischer
http://www.troubleshooting-tex.de/

Re: Odd error using inline lists from enumitem

<k38fkpFrk38U1@mid.individual.net>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=6029&group=comp.text.tex#6029

  copy link   Newsgroups: comp.text.tex
Path: i2pn2.org!i2pn.org!news.swapon.de!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: peter@silmaril.ie (Peter Flynn)
Newsgroups: comp.text.tex
Subject: Re: Odd error using inline lists from enumitem
Date: Mon, 23 Jan 2023 22:22:17 +0000
Organization: Usenet Labs Bozon Detector Facility
Lines: 19
Message-ID: <k38fkpFrk38U1@mid.individual.net>
References: <k35svfFfa3dU1@mid.individual.net> <b6ftjpcmaemd$.dlg@nililand.de>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
X-Trace: individual.net Tqaiyvt0Kky7u4uv1a8OCA/7675Z8a5iqb2ugvEnAigdgShuM2
Cancel-Lock: sha1:uOWg985aiPVaFXKNgY/x2vil4TQ=
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101
Thunderbird/102.4.2
Content-Language: en-US
In-Reply-To: <b6ftjpcmaemd$.dlg@nililand.de>
 by: Peter Flynn - Mon, 23 Jan 2023 22:22 UTC

On 22/01/2023 22:56, Ulrike Fischer wrote:
> Am Sun, 22 Jan 2023 22:51:27 +0000 schrieb Peter Flynn:
>
>> I have had the compound error
>>
>>> ! Missing number, treated as zero.
>
>> when testing the MWE:
>
>> \begin{itemize*}[label=\emph{\alph*}),itemjoin={{; }},
>
> itemize environment don't have counters, so you can't use \alph*,
> use \begin{enumerate*} instead.

Duuh! Of course. I knew it would be something too obvious to notice.
Thank you!

P

1
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor