Every directory shares the same logic.
From the root of the project (A1, A2, or A3), run
julia --project=.
and instantiate the project:
]instantiate
Get back to the shell and run
julia --project=. main.jl
To get more information about the modules' contents, include a local module in the Julia REPL
include("src/A1.jl")
using .A1
and examine the docstrings
?A1
?Problem
?Options
?solve
Use tectonic
to compile the .tex
files:
tectonic -X compile A1.tex
Note that you need to be in the same directory as the .tex
file.