From 9ffc48108add61c5ea5a1295cafbcfb6e3caf58d Mon Sep 17 00:00:00 2001 From: incheon Date: Wed, 6 Jan 2016 11:51:25 +0900 Subject: [PATCH 1/3] Create bracnh From c3b7e873b23938d6dea958f296b1d3b71278e072 Mon Sep 17 00:00:00 2001 From: Tomohiro Imaizumi Date: Fri, 11 Mar 2016 17:30:19 +0900 Subject: [PATCH 2/3] Remove texs folder from ignore list to manage as a submodule repogitory --- .gitignore | 2 -- 1 file changed, 2 deletions(-) diff --git a/.gitignore b/.gitignore index ce26bf4..c483afc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,3 @@ -texs - # Created by https://www.gitignore.io ### Vagrant ### From c162f3ad7c79d30ec5137a795b007adceb9b4926 Mon Sep 17 00:00:00 2001 From: Tomohiro Imaizumi Date: Mon, 14 Mar 2016 13:05:58 +0900 Subject: [PATCH 3/3] Update README.md referring to LaTeX source removal --- README.md | 29 +++++++++++++---------------- 1 file changed, 13 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 2b18f81..416f794 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,21 @@ -Virtual Machine for Tex Compilation into PDF +Virtual Machine for LaTeX Compiling into PDF === Introduction --- -This is a virtual environment of [Vagrant](https://www.vagrantup.com/) that enables non-unix like OS users such as Windows to compile `.tex` (LaTeX) file into `.pdf` (PDF). -You can get created PDF through the shared folder in the host OS. +This is a virtual environment by [Vagrant](https://www.vagrantup.com/) that enables Non-Unix like OS such as Windows to compile `.tex` (LaTeX) file into `.pdf` (PDF). + +When provisioning this VM, all of required tool sets are installed by shellscript. + +So you can easily create PDF and achieve it through the shared folder in the host OS. + +Important Note +--- + +**Sample LaTeX sources and compiling shellscript are extracted into [another project](https://www.github.com/imaizume/tex-sources).** + +Just clone it into shared folder *as a git submopdule*. Requirement --- @@ -44,19 +54,6 @@ $ vagrant ssh * User: vagrant * Pass: vagrant -### Compiling LaTeX into PDF - -``` -# move to shared folder -$ cd /vagrant/sample -# edit latex file -# this is a very simple sample -$ vi sample.tex -# convert script -# please change its content according to your latex file name -$ ./convert.sh -``` - Other ------