From 1a0a659aceee1db10d4ea890f61b613a1fedddf1 Mon Sep 17 00:00:00 2001 From: Elad elmakias Date: Sun, 17 Aug 2025 15:31:09 +0300 Subject: [PATCH] no font is set in circuit --- src/circuit.typ | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/circuit.typ b/src/circuit.typ index 9a0d082..f9d41e0 100644 --- a/src/circuit.typ +++ b/src/circuit.typ @@ -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) }