I am having a problem getting my LaTeX to recognize biblatex styles using bibtex8 as a back-end. I've used this notation before but when I update LaTeX it clears my styles folder and I'm never able to find the configuration again. I would like a straightforward explanation of what my problem is.
The following notation gives Package biblatex Error: Style 'aiaa' not found.
Putting the style file in the same directory as the .tex file does nothing. I need to know how to install it more basically than that.
Using OS X TexShop 3.98
Cheers.
\documentclass[]{aiaa-pretty}% insert '[draft]' option to show overfull boxes
\usepackage[utf8]{inputenc} % Required for inputting international characters
\usepackage[T1]{fontenc} % Output font encoding for international characters
\usepackage[autostyle=true]{csquotes}
\usepackage[backend=bibtex8,autocite=superscript,natbib=true,maxbibnames=99,firstinits=true,style=aiaa]{biblatex}
\DeclareNameAlias{sortname}{last-first}
\DeclareNameAlias{default}{last-first}
\let\cite=\autocite
aiaain TeXLive reveals only a.bstfile, which is not usable withbiblatex. Have you downloaded abiblatexstyle from somewhere? If so it should have a.bbxand possibly also.cbxextension. If not, then you can't usebiblatex. – Alan Munn Mar 13 '18 at 15:41.bstfiles? – moewe Mar 13 '18 at 16:08aiaa.bbx,aiaa.cbxin the same directory as your main.texfile. (You don't needaiaa.bstforbiblatex.) – moewe Mar 14 '18 at 06:16aiaa.bbxandaiaa.cbxin the same directory as your main.texfile and you start LaTeX in that directory then TeX must find the files. Double check that everything is as you think it is. – moewe Mar 15 '18 at 06:26.bbx/.cbxfiles can't be in a subfolder, they must be on the exact same level as the.texfile. Double check that your editor does not do weird things such as using a "build directory". Does LaTeX produce a.logfile in the same directory? – moewe Mar 15 '18 at 06:33