Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions news/changelog-1.9.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ All changes included in 1.9:
- New `shorthands` variable for Babel language shortcuts control.
- New `pdf-trailer-id` support for reproducible PDF builds.
- New `cancel` package support for `\cancel` command in math.
- ([#14017](https://github.com/quarto-dev/quarto-cli/issues/14017)]): `tColorOptions()` in .tex file will now always have options in alphabetical order. Previously, they were in random order leading to a different .tex intermediates for identical .qmd.

### `revealjs`

Expand Down
2 changes: 1 addition & 1 deletion src/resources/filters/common/latex.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ function tColorOptions(options)

local optionStr = ""
local prepend = false
for k, v in pairs(options) do
for k, v in spairs(options) do
if (prepend) then
optionStr = optionStr .. ', '
end
Expand Down
18 changes: 18 additions & 0 deletions tests/docs/smoke-all/2026/02/11/issue-14017.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
title: "Issue 14017"
code-block-bg: true
format:
pdf:
keep-tex: true
_quarto:
tests:
pdf:
noErrors: default
ensureLatexFileRegexMatches:
- ['boxrule=0pt, breakable, enhanced, frame hidden, interior hidden, sharp corners']
- []
---

```r
1 + 1
```
Loading