Commit fa984b2c authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

Version 13 Oct 2016

parents 8540a9f0 d11363c7
Loading
Loading
Loading
Loading
+8 −4
Original line number Diff line number Diff line
@@ -8,13 +8,15 @@ VENV = $(BUILDDIR)/docenv
TXT2RST       = $(VENV)/bin/txt2rst

PYTHON        = $(shell which python3)
HAS_PYTHON3    = NO
HAS_VIRTUALENV = NO

ifeq ($(shell which python3 >/dev/null 2>&1; echo $$?), 1)
$(error Python3 was not found! Please check README.md for further instructions)
ifeq ($(shell which python3 >/dev/null 2>&1; echo $$?), 0)
HAS_PYTHON3 = YES
endif

ifeq ($(shell which virtualenv >/dev/null 2>&1; echo $$?), 1)
$(error virtualenv was not found! Please check README.md for further instructions)
ifeq ($(shell which virtualenv >/dev/null 2>&1; echo $$?), 0)
HAS_VIRTUALENV = YES
endif

SOURCES=$(wildcard src/*.txt)
@@ -109,6 +111,8 @@ $(RSTDIR)/%.rst : src/%.txt $(TXT2RST)
	)

$(VENV):
	@if [ "$(HAS_PYTHON3)" == "NO" ] ; then echo "Python3 was not found! Please check README.md for further instructions" 1>&2; exit 1; fi
	@if [ "$(HAS_VIRTUALENV)" == "NO" ] ; then echo "virtualenv was not found! Please check README.md for further instructions" 1>&2; exit 1; fi
	@( \
		virtualenv -p $(PYTHON) $(VENV); \
		. $(VENV)/bin/activate; \
+0 −3
Original line number Diff line number Diff line
@@ -91,6 +91,3 @@ This will install virtualenv from the Python Package Index.
----------------

Installing prerequisites for PDF build


−1.56 KiB
Loading image diff...
+0 −9
Original line number Diff line number Diff line
\documentclass[12pt]{article}
\pagestyle{empty}
\begin{document}

$$
F^C = A \omega_{ij} \qquad \qquad r_{ij} < r_c
$$

\end{document}
+25 KiB
Loading image diff...
Loading