-
DescriptionI have the following problem: any document that is set to render to PDF and has the 'documentclass: scrartcl' renders an error regarding the abstract. Unfortunately, the logs are totally uninformative. Compilation works when the 'documentclass' is set to 'article'. Weirdly enough, it worked before without any problems, but suddenly all my documents that use scrartcl are failing the compilation. I would appreciate any help. Minimal example: ---
title: "Untitled"
format: pdf
---
The terminal output:
Additional error info after running
The result of
Setup info: quarto 1.4.550 |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Could you properly format your code to be legible and usable? PS: I cannot reproduce on Linux and macOS. Also, if this was really failing, Quarto tests wound have catch the error if the only thing needed was You can share a self-contained "working" (reproducible) Quarto document using the following syntax, i.e., using more backticks than you have in your document (usually four If you have multiple files (and if it is absolutely required to have multiple files), please share as a Git repository. ````qmd
---
title: "Reproducible Quarto Document"
format: html
engine: knitr
---
This is a reproducible Quarto document using `format: html`.
It is written in Markdown and contains embedded R code.
When you run the code, it will produce a plot.
```{r}
plot(cars)
```

The end.
```` Additionally and if not already given, please share the output of |
Beta Was this translation helpful? Give feedback.
-
Problem solved, compilation works. The root of the problem remains unknown, but reinstalling the LaTeX environment resolved the issue. Unfortunately, the error messages and logs were too uninformative to diagnose precisely what was wrong with the setup. The solution: First, I removed TinyTeX, ensuring that all files were deleted by checking the package localization:
Then, I reinstall it:
Next, I installed koma-script as it contains
Then, I updated tlmgr:
Finally, I proceeded to install all the packages necessary to run the compilation by attempting to compile the document and installing any missing packages indicated by errors. |
Beta Was this translation helpful? Give feedback.
Problem solved, compilation works.
The root of the problem remains unknown, but reinstalling the LaTeX environment resolved the issue. Unfortunately, the error messages and logs were too uninformative to diagnose precisely what was wrong with the setup.
The solution:
First, I removed TinyTeX, ensuring that all files were deleted by checking the package localization:
Then, I reinstall it:
Next, I installed koma-script as it contains
scrartcl
document class (I think):Then, I updated tlmgr:
Finally, I proceeded to install all the packages necessary to run the compilation by attempti…