Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

“Watch Document”: Display BibTeX Errors in Notification Window #149

Open
sanssecours opened this issue Apr 19, 2016 · 0 comments
Open

Comments

@sanssecours
Copy link
Member

Currently “Watch Document” only displays an unspecific message in the notification window if a .bib file included via biblatex contains an error. The command should show a more helpful error message.

Steps to Reproduce

  1. Create a new file References.bib with the following content

    @article{citekey,
      title={Title},
      author={Author},
      year={1970},
      publisher={ACM}error
    }
  2. Create a new file Test.tex with the following content

    \documentclass{article}
    
    \usepackage{cite}
    
    \begin{document}
    Citation~\cite{citekey}
    
    \bibliographystyle{plain}
    \bibliography{References}{}
    \end{document}
  3. Invoke “Watch Document”

Current Result

The notification window displays the following error message:

Could not find any messages containing line information.
Please take a look at the log file Test.latexmk.log to find the source of the problem.

Expected Result

The notification window should show something like this:

ERROR References.bib:5 — I was expecting a `,' or a `}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant