forked from posquit0/Awesome-CV
-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merge upstream + enhancements for fonts in bibliography #6
Closed
ashwinvis
wants to merge
90
commits into
aminmkhan:feature/publications-biblatex
from
ashwinvis:enh/publications-biblatex-fonts
Closed
Merge upstream + enhancements for fonts in bibliography #6
ashwinvis
wants to merge
90
commits into
aminmkhan:feature/publications-biblatex
from
ashwinvis:enh/publications-biblatex-fonts
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add unicode to hyperref packed to allowed unicode in pdf infos
if we hardwire the build script in the target commands, then what we want to do remains opaque to make. it is better to speak make's language, so it understands us, so we can rip the benefits from that. we don't have 1 test target, but 3: the 3 pdf examples. when we extract 3 rules from the 1 we have right now, make gets to understand what we want to do: * understand there are 3 steps to the build, not 1 * understand what are the products that will yield (pdfs) * understand products' dependencies (texs) * understand the products are independent of each other when make gets to know what the products and their dependencies are, it can tell when there is no work to do. for example, if a pdf is already there, and its tex dependency hasn't changed, there is no need to re-compile the pdf. when make knows the products are independent of each other, and we compile with make -j, then it can build faster by compiling the pdfs concurrently, rather than serially one after the other. and, there is an additional benefit here: we can compile a particular pdf, and not the others: make examples/cv.pdf. finally, note that because now make can tell when there's nothing to do, you might be surprised if, for example, on a pristine checkout of the repository, you run make, and make responds make: Nothing to be done for `examples'. this is because the pdfs are checked in, and make sees the texs haven't changed since they were last compiled. to force a build as was the case before, run make -B. alternatively, you can touch any of the tex files, and make will recompile the touched texs.
make: fix dirty check, support concurrent build
Thanks to @RiemannlnGitHub
Sharelatex no longer exists, at the moment, it just redirects to Overleaf. So the links can be removed from the Readme.
If you would merge upstream yourself the changes would not look so daunting. |
Thanks @ashwinvis, there have been new updates upstream, and I will try to review this again. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Somewhat major changes