1ctanbib(1) ctanbib man page ctanbib(1)
2
3
4
6 ctanbib - retrieve bibliographic information for packages hosted on
7 CTAN.
8
10 ctanbib <options> [package name]
11
13 This command can retrieve bibliographic information for TeX packages
14 hosted on CTAN in the BibTeX format.
15
17 -c,--ctan
18 use @ctan type instead of @manual. The difference between the
19 two is that the url field contains package CTAN path, instead of
20 link to the package.
21
22 -h,--help
23 print the help message.
24
25 -v,--version
26 print the version info.
27
29 $ ctanbib latex
30
31 This invocation will print data in the BibLaTeX format to the standard
32 output:
33
34 @manual{latex,
35 title = {The Latex package},
36 subtitle = {A TeX macro package that defines LaTeX},
37 author = {Lamport, Leslie and The LaTeX Team},
38 url = {http://www.latex-project.org/},
39 urldate = {2018-08-23},
40 date = {2018-04-01},
41 version = {PL 5}
42 }
43
44 The --ctan option:
45
46 $ ctanbib -c hyperref
47
48 This produces bib record with the @ctan type:
49
50 @ctan{hyperref,
51 title = {The Hyperref package},
52 subtitle = {Extensive support for hypertext in LaTeX},
53 author = {Rahtz, Sebastian and Oberdiek, Heiko},
54 url = {/macros/latex/contrib/hyperref},
55 urldate = {2018-08-27},
56 date = {},
57 version = {6.86b}
58 }
59
60
62 See ctanbib-doc.pdf for more details
63
65 No known bugs.
66
68 Michal Hoftich (michal.h21@gmail.com)
69
71 Permission is granted to copy, distribute and/or modify this software
72 under the terms of the LaTeX Project Public License, version 1.3.
73
74
75
76
770.1 28 aug 2018 ctanbib(1)