amine-aboufirass / pandoc-latex-writer

Custom writer for rapid note taking in markdown
MIT License
0 stars 0 forks source link

Add citations & bibliography #2

Closed amine-aboufirass closed 1 year ago

amine-aboufirass commented 2 years ago

Add syntax to provide citations and bibliography.

amine-aboufirass commented 2 years ago

A minimal bibliography that the writer should be able to generate from markdown or equivalent:

@book{
    a-book,
    title={Head First Design Patterns, 2nd Edition},
    author={Freeman, E. and Robson, E. and Safari, an O'Reilly Media Company},
    url={https://books.google.nl/books?id=luzwzQEACAAJ},
    year={2020},
    publisher={O'Reilly Media, Incorporated}
}

@misc{
    a-local-whitepaper, 
    title={Finding answers with forensic engineering - White paper}, 
    author={{RoyalHaskoningDHV}},
    note={\href{run:./reference/forensic\-engineering\-whitepaper.pdf}{local file}},
    year={2021}
}

@misc{
    an-online-resource, 
    title={{Chemical - ENTER | Netherlands}}, 
    author={{ENTER B.V.}},
    howpublished={\href{https://www.enter-group.nl/competenties/chemical}{link}}, 
    journal={{tech with a heartbeat - ENTER | Netherlands}},
    note={[Online; accessed 21-April-2022]},
    year={2022}
}

@article{
    an-article,
    author = {Terwel, Karel and Schuurman, Michiel and Loeve, Arjo},
    year = {2018},
    month = {05},
    pages = {1-8},
    title = {Improving reliability in forensic engineering: The Delft approach},
    volume = {171},
    journal = {Proceedings of the Institution of Civil Engineers - Forensic Engineering},
    doi = {10.1680/jfoen.18.00006},
    note = {\href{run:./reference/Terwel2018.pdf}{link}},
}
amine-aboufirass commented 2 years ago

s

amine-aboufirass commented 1 year ago

Bibliography and citations added to main for following types of references:

Articles and other types of resources may be added as needed, framework is now in place.