Skip to content

Commit

Permalink
🐛 New version.
Browse files Browse the repository at this point in the history
  • Loading branch information
davibarreira committed Jan 9, 2022
1 parent 81c58af commit 841a022
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "NotebookToLaTeX"
uuid = "4acc56a1-9938-4ee1-a82a-abdf2d4f6bfc"
authors = ["Davi Barreira <[email protected]> and contributors"]
version = "0.1.4"
version = "0.1.5"

[deps]
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
Expand Down
4 changes: 2 additions & 2 deletions src/templates.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down

0 comments on commit 841a022

Please sign in to comment.