Debian
包 tikz 錯誤:我沒有找到 tikz 庫 ‘crypto.symbols’
我正在嘗試在 Debian 10 上編譯 LaTex 腳本,並希望通過以下方式包含包“crypto.symbols”
\usetikzlibrary{crypto.symbols}
不幸的是,我總是得到以下錯誤消息:
Package tikz Error: I did not find the tikz library 'crypto.symbols'. I lookels.code.tex, but neither could be found in the current texmf trees.. \usetikzlibrary{crypto.symbols}
我必須安裝哪個附加軟體包才能執行此腳本?
您需要該文件
tikzlibrarycrypto.symbols.code.tex
。它似乎不在 TeXlive 或 Debian 的其他地方。您可以從 IACR下載副本。你還需要任何
tikzlibrarycrypto.symbols.code.tex
依賴的東西。除了與 tikz 捆綁的內容外,它還需要pgflibraryarrows.new.code.tex
.下載這些文件並將它們放在您的個人 TeX 包目錄中。預設情況下,這是
texmf
您的主目錄中的目錄。在這個目錄中,文件需要在下面,…/tex/generic
因為它們是可用於任何格式的 TeX 源。mkdir -p ~/texmf/tex/generic/pgf/libraries cd ~/texmf/tex/generic/pgf/libraries wget https://www.iacr.org/authors/tikz/packages/pgflibraryarrows.new.code.tex https://www.iacr.org/authors/tikz/packages/tikzlibrarycrypto.symbols.code.tex
有關安裝的更多資訊,請參閱https://tex.stackexchange.com/questions/187193/how-to-install-tikz-pgf-libraries。