Show HN: One-click citations for your essays
11–20 of 76 posts
Re: Show HN: One-click citations for your essays
#12Re: Show HN: One-click citations for your essays
#13Re: Show HN: One-click citations for your essays
#14An ISBN for a book shows up as a web resource in Google Books. Is there a way to get it to just be the book?
Re: Show HN: One-click citations for your essays
#15Is there a reason it doesn't show author names when I submit a URL like http://www.sciencemag.org/content/210/4472/903.short ?
Re: Show HN: One-click citations for your essays
#16Re: Show HN: One-click citations for your essays
#17Very cool. This would have saved me tons of time in college. One minor usability issue, clicking the different style after generating the citation doesn't have any result until you generate a new citation. That is a little unintuitive. I would either switch to the different style immediately or put some separation in the UI between the returned citation and the components that are used to generate a new citation.
Thanks for the feedback. Originally, clicking the style pill button refreshed the citation (in the selected style), which I think is the behavior you're describing. It sounds like I should go back to that behavior.
Also, "http://google.com" complains about robots.txt, but "http://google.com/" (trailing slash) does not.
Re: Show HN: One-click citations for your essays
#18What does this offer over using Google Scholar's citations?
Re: Show HN: One-click citations for your essays
#19 curl -LH "Accept: text/bibliography" "http://dx.doi.org/10.1017/S0022112061000019"
curl -LH "Accept: text/bibliography; style=bibtex" "http://dx.doi.org/10.1017/S0022112061000019"
curl -LH "Accept: text/bibliography; style=apa" "http://dx.doi.org/10.1017/S0022112061000019"
My academic life became a lot simpler when I learnt this - now I only need to maintain a database of {cite key: DOI} pairs, rather than a bibtex monster. Yes, I have tried Mendeley et al. and yes, I do prefer scripts that do what I tell them to.Re: Show HN: One-click citations for your essays
#20For interest, you can do something like this on the command line using curl. Try these: curl -LH "Accept: text/bibliography" "http://dx.doi.org/10.1017/S0022112061000019" curl -LH "Accept: text/bibliography; style=bibtex" "http://dx.doi.org/10.1017/S0022112061000019" curl -LH "Accept: text/bibliography; style=apa" "http://dx.doi.org/10.1017/S0022112061000019" My academic life became a lot simpler when I learnt this -…