我计划推出在线LuaTeX编译服务。
我在 CentOS 7 中使用 TexLive 2015 安装了 LuaTeX。出于安全考虑,我想限制打开文件。因此,我设置了openin_any=p
。但是,它还限制打开安装在 中的模板文件texmf-dist
。其他编译器可以读取模板文件。
我尝试编译这个文件:
\documentclass{ltjsarticle}
\usepackage{graphicx}
\title{title}
\author{auth}
\date{\today}
\begin{document}
\maketitle
\section{section}
This is sample.
\end{document}
我编译了此文件lualatex sample.tex
并收到如下消息:
This is LuaTeX, Version beta-0.80.0 (TeX Live 2015) (rev 5238)
restricted \write18 enabled.
(./sample.tex
LaTeX2e <2016/02/01>
Babel <3.9o> and hyphenation patterns for 1 language(s) loaded.
lualatex: Not reading from /usr/local/texlive/2015/texmf-dist/tex/luatex/luatexja/ltjsarticle.cls (openin_any = p).
! LaTeX Error: File `ltjsarticle.cls' not found.
Type X to quit or <RETURN> to proceed,
or enter new name. (Default extension: cls)
我该如何修复它?
答案1
关于 TeX 在线服务:[http://cseweb.ucsd.edu/~hovav/dist/texhack.pdf
关于 Lua:格式可以根据需要重新定义 lua,因此
local myopen = function(...) print("ERROR: open is not permitted") return false end
local _std = {}
_std.oldopen = io.open
io.open = myopen
for k,v in pairs(_std) do print(k,v) end
assert(io.open("foo"), 'Error on io.open' )
io.open 是安全的(直到 _std 被隐藏)
如果不关心 io.open:
local myopen = function(...) print("ERROR: open is not permitted") return false end
io.open = myopen
assert(io.open("foo"), 'Error on io.open' )