From 94cbed6c63ad4362547b4cbcc579c63937a780a6 Mon Sep 17 00:00:00 2001 From: Mohammad Akhlaghi Date: Mon, 23 Nov 2020 03:00:05 +0000 Subject: First draft of all the points addressed by the referees A new directory has been added at the top of the project's source called 'peer-review'. The raw reviews of the paper by the editors and referees has been added there as '1-review.txt'. All the main points raised by the referees have been listed in a numbered list and addressed (mostly) in '1-answers.txt'. The text of the paper now also includes all the implemented answers to the various points. --- project | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'project') diff --git a/project b/project index 311c051..93c55e7 100755 --- a/project +++ b/project @@ -503,11 +503,13 @@ case $operation in # example when running './project make clean' there isn't any # 'paper.pdf'). if [ -f paper.pdf ]; then - if type pdftotext > /dev/null 2>/dev/null; then - numwords=$(pdftotext paper.pdf && cat paper.txt | wc -w) - echo; echo "Number of words in full PDF: $numwords" - rm paper.txt - fi + 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}') + echo; echo "Number of words in full PDF: $numwords" + echo "No abstract, and figure captions: $numeff" + rm paper.txt + fi fi ;; -- cgit v1.2.1