проблема с пакетом siunitx в шаблоне IEEEaccess

проблема с пакетом siunitx в шаблоне IEEEaccess

Всякий раз, когда я вставляю команду \usepackage{siunitx}в свой IEEEaccessшаблон документа, я получаю сообщение об \begin{document}отсутствии команды.

Как определить единицы измерения в статье, если siunitxони не распознаются?

Мой MWE (скопирован из комментария):

\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}

А это мой лог-файл:

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.

решение1

Проблема вызвана ieeeaccessизменением значения \year. В новых версиях expl3, это покрывается внутренне. Для более старых настроек вы можете использовать

\let\oldyear\year
\def\year{%
  \ifdefined\pdfprimitive
    \expandafter\pdfprimitive
  \else
    \expandafter\primitive
  \fi
  \year}
\usepackage{expl3}
\let\year\oldyear

Связанный контент