Add radius parameter to block #12

Merged
HEL merged 3 commits from Shmerlard/circuiteria:main into dev 2025-08-17 12:36:04 +00:00
2 changed files with 6 additions and 6 deletions
Showing only changes of commit 1a0a659ace - Show all commits

View File

@@ -8,7 +8,6 @@
/// - body (none, array, element): A code block in which draw functions have been called
/// - length (length, ratio): Optional base unit
/// -> none
#let circuit(body, length: 2em, font: "Source Sans 3") = {
set text(font: font)
#let circuit(body, length: 2em) = {
canvas(length: length, body)
Outdated
Review

Would be better not to set the font at all

Would be better not to set the font at all
}