General ⇒ Extracting data from website
Extracting data from website
I would like to show the number of citations of an article in my latex document. After compilation of my latex file, this number should be generated automatically by inquiring web of science (http://apps.webofknowledge.com/WOS_Gene ... ed_tab=WOS).
How can I achieve this?
Thanks a lot.
Frank
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Extracting data from website
You could use
\write18
to call a shell script, batch file, etc.Alternatively, the package bashful implements functionality to execute
bash
directly from inside a tex document.Both options require the
--shell-escape
flag to be set while typesetting.