quickcite 1.0.7 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +12 -4
- data/lib/quickcite/version.rb +1 -1
- data/quickcite.gemspec +2 -11
- metadata +12 -8
data/README.md
CHANGED
@@ -12,11 +12,10 @@ Quickstart
|
|
12
12
|
|
13
13
|
### Usage
|
14
14
|
|
15
|
-
|
15
|
+
On the command line:
|
16
|
+
|
17
|
+
quickcite -b paper.bib *.tex
|
16
18
|
|
17
|
-
paper.pdf: ...
|
18
|
-
quickcite -b paper.bib *.tex
|
19
|
-
...
|
20
19
|
|
21
20
|
Now add a reference in your paper:
|
22
21
|
|
@@ -38,6 +37,15 @@ the paper you intended:
|
|
38
37
|
(3) Impact of Chosen Error Criteria in RSS-based Localization: Power vs Distance vs Relative Distance Error Minimization.
|
39
38
|
Giuseppe Bianchi, Nicola Blefari-Melazzi, Francesca Lo Piccolo
|
40
39
|
|
40
|
+
### Makefile Integration
|
41
|
+
|
42
|
+
For the really lazy amongst us, try adding it to your Makefile rule:
|
43
|
+
|
44
|
+
paper.pdf: ...
|
45
|
+
quickcite -b paper.bib *.tex
|
46
|
+
...
|
47
|
+
|
48
|
+
|
41
49
|
QuickCite relies on the excellent [bibtex-ruby](https://github.com/inukshuk/bibtex-ruby/) package.
|
42
50
|
|
43
51
|
Questions or suggestions: [power@cs.nyu.edu](mailto:power@cs.nyu.edu)
|
data/lib/quickcite/version.rb
CHANGED
data/quickcite.gemspec
CHANGED
@@ -2,7 +2,7 @@ require File.expand_path("../lib/quickcite/version", __FILE__)
|
|
2
2
|
|
3
3
|
spec = Gem::Specification.new do |s|
|
4
4
|
s.platform = Gem::Platform::RUBY
|
5
|
-
s.summary = "
|
5
|
+
s.summary = "Automatic citation lookup and management"
|
6
6
|
s.name = "quickcite"
|
7
7
|
s.authors = ["Russell Power"]
|
8
8
|
s.version = QuickCite::VERSION
|
@@ -16,17 +16,8 @@ Simplify your (academic) life.
|
|
16
16
|
|
17
17
|
Instead of manually hunting down references, let QuickCite do the work for you!
|
18
18
|
|
19
|
-
|
19
|
+
For usage instructions, see http://github.com/rjpower/quickcite.
|
20
20
|
|
21
|
-
gem install quickcite
|
22
|
-
|
23
|
-
Usage:
|
24
|
-
|
25
|
-
quickcite -b ref.bib *.tex
|
26
|
-
|
27
|
-
Each \\cite command which does not have a matching entry in ref.bib will be searched
|
28
|
-
for using DBLP. Simply choose the result that matches the reference you want and your
|
29
|
-
bibtex file will be updated automatically.
|
30
21
|
END
|
31
22
|
s.add_dependency "bibtex-ruby", ">=2.0"
|
32
23
|
s.add_dependency "json"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: quickcite
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.8
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -91,12 +91,16 @@ dependencies:
|
|
91
91
|
- - ! '>='
|
92
92
|
- !ruby/object:Gem::Version
|
93
93
|
version: '0'
|
94
|
-
description: !
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
94
|
+
description: ! 'Simplify your (academic) life.
|
95
|
+
|
96
|
+
|
97
|
+
Instead of manually hunting down references, let QuickCite do the work for you!
|
98
|
+
|
99
|
+
|
100
|
+
For usage instructions, see http://github.com/rjpower/quickcite.
|
101
|
+
|
102
|
+
|
103
|
+
'
|
100
104
|
email: power@cs.nyu.edu
|
101
105
|
executables:
|
102
106
|
- quickcite
|
@@ -142,5 +146,5 @@ rubyforge_project:
|
|
142
146
|
rubygems_version: 1.8.23
|
143
147
|
signing_key:
|
144
148
|
specification_version: 3
|
145
|
-
summary:
|
149
|
+
summary: Automatic citation lookup and management
|
146
150
|
test_files: []
|