aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
Diffstat (limited to 'project')
-rwxr-xr-xproject4
1 files changed, 2 insertions, 2 deletions
diff --git a/project b/project
index 93c55e7..cdace62 100755
--- a/project
+++ b/project
@@ -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