为什么下载“tabularray.sty”后仍无法识别?

为什么下载“tabularray.sty”后仍无法识别?

我收到错误“未找到文件‘tabularray.sty’”无法识别,即使我执行以下操作后也是如此:

1)我跑了 sudo tlmgr install tabularray

2)然后我跑了sudo texhash

3).然后我运行以下命令:

rm *.aux
latexmk -pdf MWE.tex

MWE.tex 文件如下所示。我肯定误解了它的工作原理。该包应该在上述命令之后安装,对吗?

此外,“未找到文件‘tabularray.sty’”与正在安装的包之间有什么区别?

\documentclass[conference]{IEEEtran}
\IEEEoverridecommandlockouts
\usepackage{cite}
\usepackage{tabularray}
\usepackage{tabulary}
\begin{document}
\vspace{-15mm}

{\small
\bibliographystyle{unsrt}
\bibliography{refs.bib}}
\end{document}

编辑 日志文件是:

Latexmk: This is Latexmk, John Collins, 26 Dec. 2019, version: 4.67.
Latexmk: applying rule 'pdflatex'...
Rule 'pdflatex': The following rules & subrules became out-of-date:
      'pdflatex'
------------
Run number 1 of rule 'pdflatex'
------------
------------
Running 'pdflatex  -recorder  "MWE.tex"'
------------
This is pdfTeX, Version 3.14159265-2.6-1.40.21 (TeX Live 2020) (preloaded format=pdflatex)
 restricted \write18 enabled.
entering extended mode
(./MWE.tex
LaTeX2e <2020-02-02> patch level 5
L3 programming layer <2020-03-06> (./IEEEtran.cls
Document Class: IEEEtran 2015/08/26 V1.8b by Michael Shell
-- See the "IEEEtran_HOWTO" manual for usage information.
-- http://www.michaelshell.org/tex/ieeetran/
(/usr/local/texlive/2020/texmf-dist/tex/latex/psnfss/ot1ptm.fd)
-- Using 8.5in x 11in (letter) paper.
-- Using PDF output.
-- This is a 10 point document.
)
** ATTENTION: Overriding command lockouts (line 2).
(/usr/local/texlive/2020/texmf-dist/tex/latex/cite/cite.sty)

! LaTeX Error: File `tabularray.sty' not found.

Type X to quit or <RETURN> to proceed,
or enter new name. (Default extension: sty)

Enter file name: X

=== TeX engine is 'pdfTeX'
Latexmk: Missing input file: 'tabularray.sty' from line
  '! LaTeX Error: File `tabularray.sty' not found.'
Latexmk: Log file says no output from latex
Latexmk: For rule 'pdflatex', no output was made
Failure to make 'MWE.pdf'
Latexmk: Errors, so I did not complete making targets
Latexmk: Use the -f option to force complete processing,
 unless error was exceeding maximum runs, or warnings treated as errors.
``

相关内容