Created
July 24, 2018 06:56
-
-
Save kngwyu/9ee74cb9de8663ad7cdac78c91ad6749 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
function luatex-make | |
set name (string split . $argv[1])[1] | |
if [ 2 = (count $argv) ] | |
set bib (string split . $argv[2])[1] | |
else | |
set bib $name | |
end | |
lualatex $name | |
biber $bib | |
lualatex $name | |
xdg-open (string join '.' $name pdf) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment