James Conigrave

Results 9 comments of James Conigrave

Hard to say what might be happening without some code to look at. But you might be including something in the table which requires LaTeX for it to render. Can...

The issue is that papaja::apa_table does not translate latex syntax to word elements. Pandoc does that and not everything can be translated (latex is huge and growing). Without seeing your...

This sounds great, I would also love the ability to make page layouts landscape for wide apa_tables in docx (related to point 7).

Flagging that with [pandoc 2.19](https://github.com/jgm/pandoc/releases/tag/2.19) col/row spanners are supported via the grid table layout. Could help in getting the col_spanners argument to work with docx. An example that should work...

I did docx and txt versions outputs for a spin-off package. This is the docx template I used: [response_letter_template.docx](https://github.com/crsh/papaja/files/8301402/response_letter_template.docx) One thing I found challenging was replacing the latex \RC tags...

I agree that it could get a bit crowded if multiple versions of the same template are offered to the user (along with templates from other packages). One solution might...

Could the lua filter be modified to replace a string like '{{wordcount}}' with the calculated count? Or is the header containing the word count not yet appended to the rest...

This isn't a final solution, but if anyone is itching for this you can add this code to 'wordcount.lua' at line 105 ``` file = io.open("wordcount.tmp", "w") file:write(body_words) file:close() ```...

Looks like many solutions have been found here. If anyone wants a package which will do a correlation table compatible with apa_table I've got one hosted on CRAN made for...