2014-10-01から1日間の記事一覧

MacTeXにおける実行ファイルの場所

シンボリックリンクが重層的に貼られている. $ which lualatex >/usr/texbin/lualatex $ ls - l /usr/texbin /Library/TeX/Distributions/Programs/texbin -> ../.DefaultTeX/Contents/Programs/texbin $ ls -l /Library/TeX/Distributions/Programs/.Defau…

TeXでLuaを使うLuaLaTeX

luaでターミナルコマンドを叩く方法 $ lua > os.execute("date") Wed Oct 1 15:52:34 JST 2014luaの使い方 \documentclass[a4paper]{article} \begin{document} \newcommand{\showhoge}{ \directlua{ tex.print('hoge') } } \showhoge \end{document}

jQueryからファイルをダウンロードする

fileDownload.jsを使う. http://stackoverflow.com/questions/4545311/download-a-file-by-jquery-ajaxfileDownloadのCDN(?) http://jqueryfiledownload.apphb.com/Scripts/jquery.fileDownload.jsjQueryを事後的に読む(DOMに追加) var head= document.ge…