Juri Strumpflohner
Juri Strumpflohner Juri is a full stack developer and tech lead with a special passion for the web and frontend development. He creates online videos for Egghead.io, writes articles on his blog and for tech magazines, speaks at conferences and holds training workshops. Juri is also a recognized Google Developer Expert in Web Technologies

Use Google Scholar and Latex for correctly citing papers

1 min read

Citing papers is somewhat critical. There are predefined styles that have/should be respected. But it can be really easy. With Latex you can define a kind of "references file" having the ".bib" extension. Then you define your citations in it, like
@article{talby2006ast,
title={%raw%}{{Agile software testing in a large-scale project}}{%endraw%},
author={Talby, D. and Keren, A. and Hazzan, O. and Dubinsky, Y.},
journal={IEEE software},
volume={23},
number={4},
pages={30--37},
year={2006},
publisher={Institute of Electrical and Electronics Engineers, Inc, 445 Hoes Ln, Piscataway, NJ, 08854-1331, USA,}
}
In your main document Latex file, where you want your references to appear (usually at the end of the document), you put the following
\bibliographystyle{plain}
\bibliography{references}
where "references" is the name of your .bib file. When you then place a cite in your document like \cite{talby2006ast}the corresponding citation will automatically appear in your references section.
 
But the cool stuff is that you don't have to necessarily write the bib file yourself. You can go to Google Scholar and get the BibTex entry from there. First however you have to activate the according option in the preferences
 
Then you will see an entry called "Import into BibTex"
This is really comfortable and saves you some work :) and moreover you don't have to worry about correct citing.
Questions? Thoughts? Hit me up on Twitter
comments powered by Disqus