Last active
August 29, 2015 14:17
-
-
Save wilbowma/dc18cfba6a91f4797490 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @inproceedings{doe06, | |
| author = {Jane Doe and John Q. Public}, | |
| title = {A Very Fancy Paper Indeed}, | |
| booktitle = {Proceedings of The Very Best Conference}, | |
| year = {2006}, | |
| location = {Cairns, Queensland, Australia}, | |
| publisher = {ACM}, | |
| address = {New York, NY, USA}, | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #lang racket | |
| (require scribble/base | |
| scriblib/autobib | |
| scriblib/bibtex) | |
| (provide (all-defined-out)) | |
| (define-cite ~cite citet generate-bibliography #:style author+date-style) | |
| (define-bibtex-cite* "bib.bib" ~cite citet ~citea citeta) | |
| (define doe06 | |
| (make-bib | |
| #:title "A Very Fancy Paper Indeed" | |
| #:author (authors "Jane Doe" "John Q. Public") | |
| #:date 2006 | |
| #:location (proceedings-location "The Very Best Conference"))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #lang scribble/base | |
| @(require | |
| "bib.rkt" | |
| scribble/manual) | |
| @title{Title} | |
| Quisque fermentum orci enim, nec blandit lacus fermentum vel. Nunc at | |
| erat fringilla, molestie massa et, laoreet neque. Mauris ut ipsum | |
| facilisis, efficitur ex at, consequat libero. Sed sagittis libero eget | |
| purus facilisis, in suscipit eros malesuada. Duis non commodo arcu. | |
| Aliquam erat volutpat. Morbi in mi sed urna finibus volutpat. Nam | |
| egestas vitae nulla id fringilla. Praesent id eros vel nisi lobortis | |
| imperdiet. Nullam condimentum mauris imperdiet ante ultricies semper. | |
| Maecenas at varius nisl@~cite[doe06]. Suspendisse porta erat scelerisque enim | |
| pharetra ultricies@~citea{doe06}. | |
| @(generate-bibliography) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment