@deathaxe, I want to thank you for all the work you have put in the last month to improve LaTeXTools!
My ST automatically updated LaTeXTools recently, and now I am unable to compile a couple of projects. I dig a little bit and I identified two issues after the update. The first seems a little easier. I usually put a comment on the top of my Bib files using the %
. This seems to create an issue now, where a message No bib files found is given. Is it possible to revert back to the previous behavior, where comments where stripped out?
The second issue is that no matter what I do, I cannot make the references to appear in the document. It seems the issue is related to finding Bib files, which contain references. I created a simple “supposedly” working example below. The first file is in the Testing
folder, it is named Example.tex
and contains the following code:
\documentclass[11pt]{article}
\usepackage[hmargin=1.0in, vmargin=1.0in, headsep=0.15in, showframe=false, portrait, letterpaper]{geometry}
\usepackage[doublespacing]{setspace}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage[authordate, giveninits=true, uniquename=false, backend=biber, maxcitenames=3, backref=false]{biblatex-chicago} % Prepares the References section.
\AtBeginBibliography{\footnotesize}
\def\UrlFont{\tt} % Formats the url links as typewriter.
\addbibresource{../References/Papers.bib} % Obtains references of working papers.
\begin{document}
\section{Introduction} \label{sec_introduction}
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
\begin{align*}
x_{i,t} = y_{i,t} + 9 \\
x_{i,t}^{2} = y_{i,t} + 7
\end{align*}
\section{Model} \label{sec_model}
According to \cite{BebchukGrinsteinPeyer2010}.
\end{document}
The second file is in the Testing/References
folder, it is named Papers.bib
and contains the following code:
@article{BebchukGrinsteinPeyer2010,
title={Lucky CEOs and lucky directors},
author={Bebchuk, Lucian A and Grinstein, Yaniv and Peyer, Urs},
journal={The Journal of Finance},
volume={65},
number={6},
pages={2363--2401},
year={2010},
publisher={Wiley Online Library}
}
I am getting the following errors:
[Compiling C:\Users\user_name\Desktop\testing\Example.tex]
Basic Builder: running pdflatex...done.
running biber...done.
running pdflatex...done.
running pdflatex...done.
No errors. Warnings:
C:\Users\user_name\Desktop\testing\Example.tex:29: LaTeX Warning: Citation 'BebchukGrinsteinPeyer2010' on page 1 undefined on input line 29.
C:\Users\user_name\Desktop\testing\Example.tex: LaTeX Warning: There were undefined references.
C:\Users\user_name\Desktop\testing\Example.tex: Package biblatex Warning: Please (re)run Biber on the file:(biblatex) Example(biblatex) and rerun LaTeX afterwards.
C:\Users\user_name\Desktop\testing\Example.log:1: Double-click here to open the full log.
[Done!]