
\usepackage{siunitx}
Immer wenn ich den Befehl in mein IEEEaccess
Vorlagendokument einfüge , erhalte ich die Fehlermeldung \begin{document}
„Fehlt“.
Wie kann ich Einheiten in meinem Artikel definieren, wenn siunitx
sie nicht erkannt werden?
Mein MWE (aus Kommentar kopiert):
\documentclass{ieeeaccess}
\usepackage{graphicx}
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{textcomp}
\usepackage{siunitx}
\usepackage{lipsum}
\begin{document}
\lipsum[1-2]
\EOD
\end{document}
Und das ist meine Protokolldatei:
Missing number, treated as zero.
<to be read again>
\gdef
l.7598 ...onst:Nn \c_sys_year_int { \tex_year:D }
A number should have been here; I inserted `0'.
(If you can't figure out why I needed to see a number,
look up `weird error' in the index to The TeXbook.)
Missing = inserted for \ifnum.
<to be read again>
\gdef
l.7598 ...onst:Nn \c_sys_year_int { \tex_year:D }
I was expecting to see `<', `=', or `>'. Didn't.
You can't use `\numexpr' in vertical mode.
\int_compare:nNnTF ...nt_eval:w #1#2\__int_eval:w
#3\__int_eval_end: \exp_af...
l.7598 ...onst:Nn \c_sys_year_int { \tex_year:D }
Sorry, but I'm not programmed to handle this case;
I'll just pretend that you didn't ask for it.
If you're in the wrong mode, you might be able to
return to the right one by typing `I}' or `I$' or `I\par'.
LaTeX Error: Missing \begin{document}.
No \begin{document} command was found. Make sure you have included \begin{document} in your preamble, and that your main document is set correctly.
Was this hint helpful?Yes / No
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.7598 ...onst:Nn \c_sys_year_int { \tex_year:D }
You're in trouble here. Try typing <return> to proceed.
If that doesn't work, type X <return> to quit.
Antwort1
Das Problem wird dadurch verursacht, dass ieeeaccess
sich die Bedeutung von ändert \year
. In neueren Versionen von expl3
wird dies intern abgedeckt. Für ältere Setups können Sie verwenden
\let\oldyear\year
\def\year{%
\ifdefined\pdfprimitive
\expandafter\pdfprimitive
\else
\expandafter\primitive
\fi
\year}
\usepackage{expl3}
\let\year\oldyear