Organizing the project folder and adding Makefile
#52
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request aims to organize the folder structure of the project, and replace the compilation of PDF from
pdflatex
tolatexmk
.My fork shows the final result.
For the folder structure the following changes has been made:
master.tex
to reflect all folder changes;The
compile
andclean
script has been removed and the generation of the PDF has been moved into aMakefile
. Inside theMakefile
the compilation is done withlatexmk
which automatically recompile the PDF if needed (for example when generating the TOC).The
README.md
has been updated accordingly to the new compiling procedure.Finally, looking at the last commit, the "*.pdf" has been added to the
.gitignore
.