quarto-journals / plos

Quarto template for Public Library of Science
https://quarto-journals.github.io/plos/
MIT License
18 stars 3 forks source link

Error rendering template.qmd #13

Closed dragonstyle closed 1 year ago

dragonstyle commented 1 year ago

Rendering template.qmd with the current version of Quarto fails with the following error:

ERROR: Error resolving header-includes- unable to open file % Remove comment for double spacing
% /usepackage{setspace}
% /doublespacing

This makes sense to me as include-in-header is usually the contents of files verbatim (unless used with the sub option text). I think updating template to:

    include-in-header: 
      text: |
        % Remove comment for double spacing
        % \usepackage{setspace} 
        % \doublespacing

will fix this.