Bramas / texiteasy

Simple and Powerful Latex Editor
GNU General Public License v3.0
43 stars 11 forks source link

Bibtex #7

Open billyhill opened 9 years ago

billyhill commented 9 years ago

Hi,

I really enjoy working with texiteasy but I can not figure out how to create my bibliography. In Texworks it just works like a charm and creates the myarticle.bbl. However, using texiteasy creates nothing else then [?].

Just a sample code that works fine for me:

filename: mybib.bib @misc{ Nobody06, author = "Nobody Jr", title = "My Article", year = "2006" }

filename: myarticle.tex \documentclass[11pt]{article} \usepackage{cite}

\begin{document}

\title{My Article} \author{Nobody Jr.} \date{Today} \maketitle

Blablabla sagte Nobody ~\cite{Nobody06}.

\bibliography{mybib}{} \bibliographystyle{plain} \end{document}

Bramas commented 9 years ago

Hi, If you build with pdflatex (or latex) two times then build > bibtex two times then pdflatex two times again does it work? This is the way latex works, I don't know why it works better with texworks, maybe it build bibtex automatically after latex when it sees there is a change in the bib file.

billyhill commented 9 years ago

Thanks for your quick answer again. I tried that before but your solution didn't work for me. May it be related to the Preferences -> Compilation -> BibTex setting? A button to reset all those settings would also be nice in the next release.

mrwth commented 8 years ago

I had the same problem without using bibtex, i.e. with the thebibliography environment. I solved it by unchecking the "hide auxiliary files" option in preferences>compilation. Something apparently doesn't work right when the aux file is stored in the .texiteasy folder. (os: windows 10)