scribble
scribble copied to clipboard
Shouldn't books have titles?
Shouldn't there be a title argument?
(book-location [#:edition edition
#:publisher publisher]) → element?
edition : any/c = #f
publisher : any/c = #f
Or maybe I misunderstood the purpose of book-location. I have a citation to a paper that appears in a book, but there doesn't seem to be a good way to create that entry.
book-location is definitely intended to be used with the #:is-book?
argument of make-bib. So, it's really for citing entire books. How off
does the citation look if you use proceedings-location? I think you could
easily make the function you want by comparing the two functions. Also, you
can also just type in a string if you don't want to spend the time right
now to make a reusable function.
On Wed, Mar 16, 2016 at 10:43 PM, David Van Horn [email protected] wrote:
Or maybe I misunderstood the purpose of book-location. I have a citation to a paper that appears in a book, but there doesn't seem to be a good way to create that entry.
— You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub https://github.com/racket/scribble/issues/35#issuecomment-197664659
Jay McCarthy Associate Professor PLT @ CS @ UMass Lowell http://jeapostrophe.github.io
"Wherefore, be not weary in well-doing,
for ye are laying the foundation of a great work.
And out of small things proceedeth that which is great." - D&C 64:33
The problem with using proceedings-location is that the result says "In Proc.", which is pretty far of the mark. I'll submit a pull request for a new function.
Thanks.
On Thu, Mar 17, 2016 at 5:45 AM, Jay McCarthy [email protected] wrote:
book-locationis definitely intended to be used with the#:is-book?argument ofmake-bib. So, it's really for citing entire books. How off does the citation look if you useproceedings-location? I think you could easily make the function you want by comparing the two functions. Also, you can also just type in a string if you don't want to spend the time right now to make a reusable function.On Wed, Mar 16, 2016 at 10:43 PM, David Van Horn <[email protected]
wrote:
Or maybe I misunderstood the purpose of book-location. I have a citation to a paper that appears in a book, but there doesn't seem to be a good way to create that entry.
— You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub https://github.com/racket/scribble/issues/35#issuecomment-197664659
Jay McCarthy Associate Professor PLT @ CS @ UMass Lowell http://jeapostrophe.github.io
"Wherefore, be not weary in well-doing, for ye are laying the foundation of a great work. And out of small things proceedeth that which is great."
- D&C 64:33
— You are receiving this because you authored the thread. Reply to this email directly or view it on GitHub https://github.com/racket/scribble/issues/35#issuecomment-197791379
Actually, I'm just going to close this. In my case, it's a festschrift and probably not re-usable.
Feschrifts seems fairly common, as does writing book chapters that are individually cite able. Not that you need to do work, but it would be welcome.
On Thursday, March 17, 2016, David Van Horn [email protected] wrote:
Closed #35 https://github.com/racket/scribble/issues/35.
— You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub https://github.com/racket/scribble/issues/35#event-593262025
As Jay says, the element for a make-bib location doesn't have to be constructed by a provided function like book-location, but the documentation doesn't provide any guidance on how location text should be formatted to fit in. I guess there's a trade-off between always using function and pinning down a fixed format for bib entries, but I think the current format should be better documented.