diff options
author | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2020-11-23 03:00:05 +0000 |
---|---|---|
committer | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2020-11-23 03:00:05 +0000 |
commit | 94cbed6c63ad4362547b4cbcc579c63937a780a6 (patch) | |
tree | ffe1c322eb48286725d92bf2f16e43579fcd4658 /project | |
parent | 7692033f87b4c0326f655b7c73d361e6d318294a (diff) |
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.
Diffstat (limited to 'project')
-rwxr-xr-x | project | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -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 ;; |