• R/O
  • SSH

コミット

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

コミットメタ情報

リビジョン22ca9caa0cd9ac2bc9ac0eef110c3ad2130bc333 (tree)
日時2017-03-27 23:51:47
作者Lorenzo Isella <lorenzo.isella@gmai...>
コミッターLorenzo Isella

ログメッセージ

A script to compile a tex file with a bibtex file.

変更サマリ

差分

diff -r 5caffdf5f9f8 -r 22ca9caa0cd9 Python-codes/compile_tex.py
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/Python-codes/compile_tex.py Mon Mar 27 16:51:47 2017 +0200
@@ -0,0 +1,13 @@
1+#!/usr/bin/python
2+
3+import subprocess, sys
4+
5+commands = [
6+ ['pdflatex', sys.argv[1] + '.tex'],
7+ ['bibtex', sys.argv[1] + '.aux'],
8+ ['pdflatex', sys.argv[1] + '.tex'],
9+ ['pdflatex', sys.argv[1] + '.tex']
10+]
11+
12+for c in commands:
13+ subprocess.call(c)