- fixed bug with texcount returning wrong data for nauty lines

- improved acceptence test for word count to use nauty lines
This commit is contained in:
Henry Oswald
2015-09-09 13:52:45 +01:00
parent 561eaa0d66
commit 74c393cda3
5 changed files with 664 additions and 22 deletions

View File

@@ -146,10 +146,10 @@ module.exports = CompileManager =
results['outside'] = parseInt(info, 10)
if data.indexOf("of head") > -1
results['headers'] = parseInt(info, 10)
if data.indexOf("float") > -1
if data.indexOf("Number of floats/tables/figures") > -1
results['elements'] = parseInt(info, 10)
if data.indexOf("inlines") > -1
if data.indexOf("Number of math inlines") > -1
results['mathInline'] = parseInt(info, 10)
if data.indexOf("displayed") > -1
if data.indexOf("Number of math displayed") > -1
results['mathDisplay'] = parseInt(info, 10)
return results