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