raphael_ldl
raphael_ldl

Reputation: 113

Papaja abstract indentation

in a papaja-generated document, why is the first paragraph of the abstract not properly indented - see the offset between "Intro." and "Conclusion.", while both should be equally indented if I read the YAML correctly.

---
title             : "My title"
shorttitle        : "My shorttitle"

author: 
  - name          : "John Doe"
    affiliation   : "1"
    corresponding : yes    # Define only one corresponding author
    address       : "Postal address"
    email         : "[email protected]"

affiliation:
  - id            : "1"
    institution   : "University of Annoying Typesetting"

abstract: |

  Intro. This is my introduction
  
  Conclusion. This is my conclusion
  
  
keywords          : "keywords"
wordcount         : "X"

floatsintext      : no
figurelist        : no
tablelist         : no
footnotelist      : no
linenumbers       : no
mask              : no
draft             : no
figsintext        : yes
header-includes:
documentclass     : "apa7"
classoption       : "man"
output:
  papaja::apa6_pdf:
    latex_engine: xelatex
---

enter image description here

Upvotes: 1

Views: 130

Answers (1)

crsh
crsh

Reputation: 1716

This seems to happen when an author note is included on the first page. Until this is fixed in the package, you can do the following:

abstract: |
  \raggedright
  Intro. This is my introduction
  
  Conclusion. This is my conclusion

Upvotes: 0

Related Questions