File tree 4 files changed +15
-11
lines changed
4 files changed +15
-11
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,19 @@ sudo python setup.py install
30
30
cd ..
31
31
```
32
32
33
+ Compile the lexer:
34
+ ```
35
+ cd lexer
36
+ sudo python setup.py install
37
+ cd ..
38
+ ```
39
+
40
+ Install the PGFPlots.jl package:
41
+ ``` julia
42
+ using Pkg
43
+ Pkg. add (" PGFPlots" )
44
+ ```
45
+
33
46
Install ` pdf2svg ` , which is used by PGFPlots (we assume Ubuntu - other operating systems may install pdf2svg differently):
34
47
```
35
48
sudo apt-get install pdf2svg
@@ -40,7 +53,7 @@ Install [pgfplots](https://ctan.org/pkg/pgfplots).
40
53
Install the Weave.jl package:
41
54
``` julia
42
55
using Pkg
43
- Pkg. add (" Weave.jl " )
56
+ Pkg. add (" Weave" )
44
57
```
45
58
46
59
Update the texlive manager and install pythontex:
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ \section{Using Julia}
81
81
\end {tikzpicture}
82
82
\caption {
83
83
\label {fig:sample_tikzpicture }
84
- A figure made using the \texttt {tikzpicture } environment.
84
+ A figure made using a \texttt {tikzpicture } environment.
85
85
}
86
86
\end {figure}
87
87
Original file line number Diff line number Diff line change 1
1
# Any imports you need go here.
2
2
using PGFPlots
3
- using TikzPictures
4
- using LinearAlgebra
5
- using Distributions
6
- using Random
7
- using StatsBase
8
- using Vec
9
- using Printf
10
-
11
- import Base: rand, < , ==
12
3
13
4
include (" all_algorithm_blocks.jl" )
14
5
You can’t perform that action at this time.
0 commit comments