diff options
Diffstat (limited to 'project')
-rwxr-xr-x | project | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -505,9 +505,9 @@ case $operation in if [ -f paper.pdf ]; then if type pdftotext > /dev/null 2>/dev/null; then numwords=$(pdftotext paper.pdf && cat paper.txt | wc -w) - numeff=$(echo $numwords | awk '{print $1-850}') + numeff=$(echo $numwords | awk '{print $1-850+500}') echo; echo "Number of words in full PDF: $numwords" - echo "No abstract, and figure captions: $numeff" + echo "No abstract, and captions (250 for each figure): $numeff" rm paper.txt fi fi |