diff --git a/docs/src/index.md b/docs/src/index.md index c4f0309..d057ac5 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -19,11 +19,11 @@ The main command will analyse a supplied directory for a $\LaTeX$ project and cr First, make sure you have Julia installed on your system. We recommend using `juliaup`(https://github.com/JuliaLang/juliaup) if you have not installed Julia already. Then, run the following command to install the `SubmitPaper.jl` package: ```bash -julia -e 'using Pkg; Pkg.add("https://github.com/JamieMair/SubmitPaper.jl");' +julia -e 'using Pkg; Pkg.add(url="https://github.com/JamieMair/SubmitPaper.jl");' ``` This will install to your global directory, allowing use of the package from anywhere. -Next, find the absolute path to the directory containing your $\LaTeX$ project (e.g. `"path/to/project"`) and run the following from the command line to create the submission folder: +Next, find the absolute path to the directory containing your $\LaTeX$ project (e.g. `"path/to/project"`), making sure to use the escaped characters `\\` on Windows, and run the following from the command line to create the submission folder: ```bash julia -e 'using SubmitPaper; package("path/to/project")' ```