authorindex and tinytex environmental variables
[Env: Windows 10, R 4.5.1, tinytex 0.57, Quarto 1.7.29]
I'm using tinytex for my Quarto book, which is a big change from how I used to do things using MikTeX on windows, where I knew where all LaTeX files lived, how I could have my own localtexmf directory for .sty, .bst files, etc. I knew how everything worked,
but don't know how to manage my TeX setup with tinytex.
I want to create an Author Index, using the LaTeX authorindex package and its' perl authorindex script, but this relies on environmental variables for the search paths for .bib and .bst files,
my $bstenv="BSTINPUTS"; # Environment Variable holding .bst search path
my $bibenv="BIBINPUTS"; # Env Variable holding search path for BibTeX databases
How can I set these in the MINGW64 shell for RStudio?
The .bib files for my book are all under a bib/ directory.
Quarto uses csl: bib/apa.csl rather than a .bst file. I suppose I could try to use a apa.bst file instead.