篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ruby 在Mac OS X上使用latexmk相关的知识,希望对你有一定的参考价值。
class Latexmk < Formula
desc "Latexmk completely automates the process of generating a LaTeX document."
homepage "http://users.phys.psu.edu/~collins/software/latexmk-jcc/"
url "http://users.phys.psu.edu/%7Ecollins/software/latexmk-jcc/latexmk-443a.zip"
sha256 "e410d295c0a47327b953ece5b582c294359bdf89138ef990d5621b020ff2bbe5"
depends_on :tex
depends_on "ghostscript" => :optional
def install
bin.install "latexmk.pl" => "latexmk"
man1.install "latexmk.1"
end
test do
(testpath/"test.tex").write <<-'EOS'.undent
\documentclass{article}
\begin{document}
Hello World!
\end{document}
EOS
system bin/"latex-mk", "test.tex"
assert File.exist?("test.dvi")
end
end
以上是关于ruby 在Mac OS X上使用latexmk的主要内容,如果未能解决你的问题,请参考以下文章