Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,9 @@
*.snm
*.toc
*.vrb
*.fdb_latexmk
*.fls
*.pdf
*.spl
*.bbl
*.blg
14 changes: 14 additions & 0 deletions papers/2024_softwarex/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
NAME=paper

all: $(NAME).pdf

# We have a custom .latexmkrc file in this directory which tells latexmk how to make the glossary.
# https://tex.stackexchange.com/questions/1226/how-to-make-latexmk-use-makeglossaries
$(NAME).pdf: $(NAME).tex
latexmk -g -pdf -logfilewarnings $<

# Removes all temporary files including output files (dvi/ps/pdf).
# Note: "latexmk -c" doesn't remove output files.
clean:
latexmk -C
rm -f *~ .*~
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading