-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
start of latex-refactors-2025-01-01-bccxFy 🪄 - kamangir/bolt#746
- Loading branch information
Showing
6 changed files
with
84 additions
and
72 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
#! /usr/bin/env bash | ||
|
||
function abcli_latex_build() { | ||
local options=$1 | ||
|
||
local do_dryrun=$(abcli_option_int "$options" dryrun 0) | ||
local do_bibclean$(abcli_option_int "$options" bibclean 0) | ||
local do_install=$(abcli_option_int "$options" install 0) | ||
local do_ps=$(abcli_option_int "$options" ps 1) | ||
local do_pdf=$(abcli_option_int "$options" pdf 1) | ||
local bib_file=$(abcli_option "$options" bib) | ||
|
||
[[ "$do_install" == 1 ]] && | ||
abcli_latex install | ||
|
||
local full_path=$2 | ||
if [[ ! -f "$full_path" ]]; then | ||
abcli_log_error "@latex: build: $full_path: file not found." | ||
return 1 | ||
fi | ||
local path=$(dirname "$full_path") | ||
local filename=$(basename "$full_path") | ||
filename=${filename%.*} | ||
abcli_log "building $path / $filename.tex..." | ||
|
||
pushd $path >/dev/null | ||
|
||
rm -v $filename.dvi | ||
rm -v $filename.ps | ||
|
||
local round | ||
for round in 1 2 3; do | ||
abcli_log "round $round..." | ||
|
||
abcli_eval dryrun=$do_dryrun \ | ||
latex \ | ||
-interaction=nonstopmode \ | ||
$filename.tex | ||
[[ $? -ne 0 ]] && return 1 | ||
|
||
[[ ! -z "$bib_file" ]] && | ||
abcli_eval dryrun=$do_dryrun \ | ||
bibtex $bib_file | ||
done | ||
|
||
#abcli_eval dryrun=$do_dryrun \ | ||
# makeindex $filename.idx | ||
|
||
[[ "$do_ps" == 1 ]] && | ||
abcli_eval dryrun=$do_dryrun \ | ||
dvips \ | ||
-o $filename.ps \ | ||
$filename.dvi | ||
|
||
[[ "$do_pdf" == 1 ]] && | ||
abcli_eval dryrun=$do_dryrun \ | ||
ps2pdf $filename.ps | ||
|
||
popd >/dev/null | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#! /usr/bin/env bash | ||
|
||
function abcli_latex_install() { | ||
if [[ "$abcli_is_mac" == true ]]; then | ||
brew install bibclean | ||
|
||
brew install --cask mactex | ||
|
||
abcli_log_warning "restart the terminal..." | ||
return | ||
fi | ||
|
||
abcli_log_error "@latex: build: not supported here." | ||
return 1 | ||
} |
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
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