I am new to LaTex writing a research paper. I am using MikTex and VSCode
I am using \usepackage[backend=biber, style=apa]{biblatex}. This correctly generates references & bibliography on my windows computer, but when I work on my MacOS M1 laptop, it does not.
I have already updated all packages to the latest version. I have also tried adding the code below in settings.json of VSCode.
{
"name": "biber",
"command": "biber",
"args": [
"%DOCFILE%"
]
}
However, running PDFLatex-->biber-->PDFLatex x2 does not work either.
Is there anyway that my installation of MikTex/VSCode/Biber is incorrect for MacOS?
Does not work if compiled from command line.
– Solarrixs Nov 18 '22 at 01:39biber --versionorbiber <yourfile>form the command line? Do you get error messages? – moewe Nov 18 '22 at 06:41babelandfirstaidin MikTeX due to a missed update: https://tex.stackexchange.com/q/665487/35864.) Just don't sync the temporary files (.aux,.bbl,.bcf, ...) with your files (those can depend on package versions much more than the source): Just take the.tex,.biband image sources. ... – moewe Nov 18 '22 at 06:46