diff --git a/Project.toml b/Project.toml index 79d6fa7..48d9227 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "NotebookToLaTeX" uuid = "4acc56a1-9938-4ee1-a82a-abdf2d4f6bfc" authors = ["Davi Barreira and contributors"] -version = "0.1.4" +version = "0.1.5" [deps] Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f" diff --git a/src/templates.jl b/src/templates.jl index 87a8237..3b547d6 100644 --- a/src/templates.jl +++ b/src/templates.jl @@ -41,7 +41,7 @@ function createtemplate(path=".", template=:book) end end - titlepage = read(String(@__DIR__)*"../templates/frontmatter/titlepage.tex", String) + titlepage = read(String(@__DIR__)*"/../templates/frontmatter/titlepage.tex", String) titlepagetex = path * "/frontmatter/titlepage.tex" if !isfile(titlepagetex) @@ -50,7 +50,7 @@ function createtemplate(path=".", template=:book) end end - copyright = read(String(@__DIR__)*"../templates/frontmatter/copyright.tex", String) + copyright = read(String(@__DIR__)*"/../templates/frontmatter/copyright.tex", String) copyrighttex = path * "/frontmatter/copyright.tex" if !isfile(copyrighttex)