問題和背景
我有一個 shell 腳本,它從 Gitlab wiki 下載 Markdown 文件,進行一些 pandoc 過濾,然後將其轉換為 PDF。
轉換為 PDF 的過程發生在潘多克,它在背景使用 LaTeX。由於某種原因,當我latexmk
在--pdf-engine
選項腳本失敗。
命令和錯誤
如果我運行pandoc mwe.tex --pdf-engine=latexmk -o ./mwe.pdf
該過程失敗並pdflatex.log
顯示:
INFO pdflatex - this process (2200) started by 'sh' with command line: "C:\Program Files\MiKTeX 2.9\miktex\bin\x64\pdflatex.exe" -interaction=batchmode -halt-on-error -interaction=batchmode -recorder -output-directory=C://Users/username/AppData/Local/Temp/tex2pdf.-f71f6aebf5dc3db8 C://Users/username/AppData/Local/Temp/tex2pdf.-f71f6aebf5dc3db8/input.tex
INFO pdflatex - allowing known shell commands
INFO pdflatex - enabling input (output) from (to) processes
INFO pdflatex - setting output directory: C:/Users\username\AppData\Local\Temp\tex2pdf.-f71f6aebf5dc3db8
INFO pdflatex - setting aux directory: C:/Users\username\AppData\Local\Temp\tex2pdf.-f71f6aebf5dc3db8
ERROR pdflatex.core - Access is denied.
ERROR pdflatex.core - Function: FindFirstFileExW
ERROR pdflatex.core - Result: 5
ERROR pdflatex.core - Data: directory="C:\$Recycle.Bin\S-1-5-18"
ERROR pdflatex.core - Source: Libraries\MiKTeX\Core\DirectoryLister\win\winDirectoryLister.cpp:135
FATAL pdflatex - Windows API error 5: Access is denied.
FATAL pdflatex - Info: directory="C:\$Recycle.Bin\S-1-5-18"
FATAL pdflatex - Source: Libraries\MiKTeX\Core\DirectoryLister\win\winDirectoryLister.cpp
FATAL pdflatex - Line: 135
INFO pdflatex - this process (2200) finishes with exit code 1
WARN miktex.core - still open: C://Users/username/AppData/Local/Temp/tex2pdf.-f71f6aebf5dc3db8/input.tex
WARN miktex.core - still open: C:/Users\username\AppData\Local\Temp\tex2pdf.-f71f6aebf5dc3db8\input.log
我嘗試過的
運行latexmk -pdf mwe.tex
按預期進行。
運行pandoc mwe.tex --pdf-engine=xelatex -o ./mwe.pdf
按預期進行。
上一個問題提到應正確設定權限。我已經檢查過,我的用戶擁有和資料夾Full Control
的權限。 但是,錯誤表示該資料夾引起了問題,該資料夾僅具有 SYSTEM 使用者的權限。這就提出了一個問題:為什麼 pdflatex 要訪問系統回收站而不是我的使用者回收站?c:\Program Files\MiKTeX 2.9\
c:\Users\username\AppData\Local\Temp\
C:\$Recycle.Bin\S-1-5-18
微量元素
我的 MWE 如下:
\documentclass[]{article}
\title{Title}
\author{Author}
\date{Month 00, 1984}
\begin{document}
\maketitle
Some content
\end{document}