Skip to content

Commit

Permalink
Possibility of estrablecer question-point-position to none.
Browse files Browse the repository at this point in the history
  • Loading branch information
andres-gimenez committed Apr 4, 2024
1 parent b6a44e5 commit 47d3214
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ To use this package, simply add the following code to your document:
- Include parameter question-text-parameters.
- Show solution
- Expand documentation.
- Possibility of estrablecer question-point-position to none.
- Bug fix show watermark.

### v0.2.0
Expand Down
4 changes: 2 additions & 2 deletions src/g-exam.typ
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/// - show-studen-data(none, true, false, "first-page", "odd-pages"): It shows a box for the student to enter their details. It can appear on the first page or on all odd-numbered pages.
/// - show-grade-table: (bool): Show grade table.
/// - decimal-separator: (".", ","): Indicates the decimal separation character.
/// - question-point-position: (left, right): Position of question point.
/// - question-point-position: (none, left, right): Position of question point.
/// - show-solution: (true, false): It shows the solutions to the questions.
#let g-exam(
author: (
Expand Down Expand Up @@ -80,7 +80,7 @@
assert(show-studen-data in (none, true, false, "first-page", "odd-pages"),
message: "Invalid show studen data")

assert(question-point-position in (left, right),
assert(question-point-position in (none, left, right),
message: "Invalid question point position")

assert(decimal-separator in (".", ","),
Expand Down

0 comments on commit 47d3214

Please sign in to comment.