-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add support for multiple input BibTeX files
- Loading branch information
1 parent
c65c086
commit 0a72423
Showing
6 changed files
with
58 additions
and
9 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
- [ ] Remove dependency on `ext.sh` | ||
- [ ] Support multiple reference BibTeX files | ||
- [x] Support multiple reference BibTeX files | ||
- [ ] Support a directory of reference BibTeX files | ||
- [x] Option to perform a dry-run (no file output, only print info to stdout) |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/usr/bin/env bash | ||
|
||
python -m pdb ./bibx -b test/p*.bib -f test/*.tex -d |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
@inproceedings{avi_dist_dwt_fpga_2015, | ||
author = {Avinash, C.S. and Alex, John Sahaya Rani}, | ||
booktitle = {2015 International Conference on Smart Technologies and Management for Computing, Communication, Controls, Energy and Materials (ICSTM)}, | ||
doi = {10.1109/ICSTM.2015.7225436}, | ||
number = {}, | ||
pages = {326-330}, | ||
title = {FPGA implementation of Discrete Wavelet Transform using Distributed Arithmetic Architecture}, | ||
volume = {}, | ||
year = {2015}, | ||
} | ||
|
||
@inproceedings{mahajan2010efficient, | ||
author = {Mahajan, Anurag and Mohanty, Basant K}, | ||
booktitle = {2010 IEEE Asia Pacific Conference on Circuits and Systems}, | ||
organization = {IEEE}, | ||
pages = {1195--1198}, | ||
title = {Efficient VLSI architecture for implementation of 1-D discrete wavelet transform based on distributed arithmetic}, | ||
year = {2010}, | ||
} | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
@inproceedings{zhou_da_fir_fpga, | ||
author = {Yajun Zhou and Pingzheng Shi}, | ||
booktitle = {2011 International Conference on Multimedia Technology}, | ||
doi = {10.1109/ICMT.2011.6003032}, | ||
pages = {294-297}, | ||
title = {Distributed Arithmetic for FIR Filter implementation on FPGA}, | ||
year = {2011}, | ||
} | ||
|
||
@article{shan1948, | ||
author="Shannon, C.E.", | ||
journal="The Bell Systems Technical Journal", | ||
title="A Mathematical Theory of Communication", | ||
year="1948", | ||
volume="27", | ||
pages="379-423, 623-656" | ||
} | ||
|