dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

bib.snippets (1317B)


      1 snippet @book "Book citation" b
      2 @book{${1:ref},
      3   author    = {},
      4   title     = {},
      5   publisher = {},
      6   ?_volume   = {},
      7   ?_number   = {},
      8   ?_series   = {},
      9   ?_address  = {},
     10   ?_edition  = {},
     11   year      = {},
     12   ?_month    = {},
     13   ?_note     = {}
     14 }
     15 endsnippet
     16 snippet @article "Article" b
     17 @article{${1:ref},
     18   author    = {},
     19   title     = {},
     20   journal   = {},
     21   ?_volume   = {},
     22   ?_number   = {},
     23   ?_pages    = {},
     24   year      = {},
     25   ?_month    = {},
     26   ?_note     = {}
     27 }
     28 endsnippet
     29 snippet @inproceedings "Proceedings from conference" b
     30 @inproceedings{${1:ref},
     31   author      = {},
     32   title       = {},
     33   booktitle   = {},
     34   ?_editor        = {},
     35   ?_volume        = {},
     36   ?_number        = {},
     37   ?_series        = {},
     38   ?_pages     = {},
     39   ?_address   = {},
     40   ?_organization  = {},
     41   ?_publisher = {},
     42   year        = {},
     43   ?_month     = {},
     44   ?_note      = {}
     45 }
     46 endsnippet
     47 snippet @misc "Misc (website, etc.)" b
     48 @misc{${1:ref},
     49   ?_author    = {},
     50   ?_title     = {},
     51   ?_howpublished = {},
     52   ?_year     = {XXXX},
     53   ?_month    = {},
     54   ?_note     = {}
     55 }
     56 endsnippet
     57 snippet @tech "Technical report" b
     58 @techreport{${1:ref},
     59   author    = {},
     60   title     = {},
     61   institution = {},
     62   ?_type     = {},
     63   ?_number   = {},
     64   ?_address  = {},
     65   year      = {XXXX},
     66   ?_month    = {},
     67   ?_note     = {}
     68 }
     69 endsnippet