Created
December 18, 2012 09:51
-
-
Save ConstantineLignos/4326728 to your computer and use it in GitHub Desktop.
Info for fixing whitespace parsing issue in checkcites.
This file contains hidden or 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
\documentclass{article} | |
\begin{document} | |
This is a test \cite{foo2012}. | |
\bibliographystyle{plain} | |
\bibliography{tworef} | |
\end{document} |
This file contains hidden or 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
***Before patch*** | |
checkcites.lua -- a reference checker script (v1.0h) | |
Copyright (c) 2012 Enrico Gregorio, Paulo Roberto Massa Cereda | |
I found 1 citation(s). | |
Great, there's only one 'bib' file. Let me check it. | |
I found 2 reference(s). | |
Unused reference(s) in your bibliography file(s): 2 | |
- foo2012 | |
- foo2011 | |
Undefined reference(s) in your TeX file: 1 | |
- foo2012 | |
***After patch*** | |
checkcites.lua -- a reference checker script (v1.0h) | |
Copyright (c) 2012 Enrico Gregorio, Paulo Roberto Massa Cereda | |
I found 1 citation(s). | |
Great, there's only one 'bib' file. Let me check it. | |
I found 2 reference(s). | |
Unused reference(s) in your bibliography file(s): 1 | |
- foo2011 | |
Undefined reference(s) in your TeX file: 0 |
This file contains hidden or 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
@Article{ foo2012, | |
title = {Bar}, | |
author = {Doe, J.}, | |
journal = {Nonexistent Journal}, | |
volume = {1}, | |
number = {1}, | |
pages = {1--2}, | |
year = {2012}, | |
publisher = {Nonexistent publisher} | |
} | |
@Article{ foo2011, | |
title = {Bar}, | |
author = {Doe, J.}, | |
journal = {Nonexistent Journal}, | |
volume = {1}, | |
number = {1}, | |
pages = {1--2}, | |
year = {2011}, | |
publisher = {Nonexistent publisher} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment