Skip to content
Discussion options

You must be logged in to vote

I think atom-latex use latexmk as builder, so one of options is to create rc file.

.latexmkrc

add_cus_dep('glo', 'gls', 0, 'makeglossaries');
add_cus_dep('acn', 'acr', 0, 'makeglossaries');
sub makeglossaries {
    system("makeglossaries \"$_[0]\"");
}
push @generated_exts, 'glo', 'gls', 'glg', 'acn', 'acr', 'alg';

Other option is to use glossaries-extra instead, like

\usepackage[shortcuts,acronym,automake]{glossaries-extra}

but -shell-escape is required (probably you need to turn it on in package settings).

If it doesn't work then try latex-tools.

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by stefaniecg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants