I have to make a work using this template: https://www.overleaf.com/latex/templates/master-degree-thesis-unir-university-english/rtkkxskmdsbc
Now, I can use it directly on overleaf and it works relatively well, but because the final project is going to be quite heavy, I won't be able to use Overleaf until the end, so I have to use my home computer with LaTeX on it to compile it. However, I'm having trouble: When I download the whole template, it seems be able to be compiled using either XeLatex or LuaLatex. However, since it uses a *.bib archive for the bibliography, I need to compile the whole thing eventually with BibTex. However, this doesn't seem to work, and I don't understand why.
Some more clarifications: In order to compile the file I'm using TexMaker with MikTeX, and it insists that it needs the flag "-shell-escape" to compile. To do this, I'm using this precise command line to compile it into a PDF, and it creates the pdf, but without bibliography:
lualatex -interaction=nonstopmode --shell-escape %.tex
I compile it twice as it is necessary to fully create the logs so that BibTex could (ideally) identify all the citations. However when I run the BibTex Command, it generates this error and DOESN'T generate any bibliography:
This is BibTeX, Version 0.99d (MiKTeX 23.4) The top-level auxiliary file: TFM.aux I couldn't open auxiliary file contenido/TFM-05_SeleccionAtrib.aux ---line 28 of file TFM.aux : \@input{contenido/TFM-05_SeleccionAtrib.aux : } I'm skipping whatever remains of this command I couldn't open auxiliary file contenido/TFM-11_Apendice_2.aux ---line 33 of file TFM.aux : \@input{contenido/TFM-11_Apendice_2.aux : } I'm skipping whatever remains of this command I found no \citation commands---while reading file TFM.aux I found no \bibdata command---while reading file TFM.aux I found no \bibstyle command---while reading file TFM.aux (There were 5 error messages)
And it generates the PDF file, but when I try to compile it with lualatex again with the same command as above, it still doesn't generate the PDF with bibliography. Is there something I'm missing? Please help...