IEEEaccess テンプレートの siunitx パッケージの問題

IEEEaccess テンプレートの siunitx パッケージの問題

\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

関連情報