From e6706c6b6b9b1e1be92e19b4d074a6c92f17e3b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Gim=C3=A9nez=20Mu=C3=B1oz?= Date: Mon, 30 Sep 2024 18:30:35 +0200 Subject: [PATCH] Change point parameter by points. --- README.md | 8 +-- docs/pages/commands.markdown | 41 ++++++------ docs/pages/configuration.markdown | 8 +-- docs/pages/index.markdown | 6 +- .../exam-latexmit-example-without-spaces.typ | 8 +-- .../exam-latexmit-wxample-with-points.typ | 8 +-- examples/exam-localization.typ | 6 +- examples/exam-mathematics.typ | 14 ++--- examples/exam-minimal.typ | 6 +- examples/exam-points-position.typ | 10 +-- examples/exam-sugar-notation.typ | 6 +- examples/exam-table-content.typ | 6 +- examples/size-text-question.typ | 8 +-- manual/g-exam-manual.typ | 12 ++-- src/g-exam.typ | 4 +- src/g-question.typ | 63 ++++++++++--------- src/global.typ | 8 +-- template/1er exam.typ | 6 +- test/Otros/test-006.typ | 8 +-- test/Paragraph/test-001.typ | 20 +++--- .../test-001-question-text-parameters.typ | 20 +++--- test/fonts/test-002-text.typ | 20 +++--- test/fonts/test-003-page-letter.typ | 20 +++--- test/parameters/test-001.typ | 6 +- test/parameters/test-002.typ | 6 +- test/parameters/test-003.typ | 6 +- test/questions/test-only-subquestion.typ | 9 +++ test/questions/test-question.typ | 9 +++ test/questions/test-subquestion.typ | 9 +++ 29 files changed, 196 insertions(+), 165 deletions(-) create mode 100644 test/questions/test-only-subquestion.typ create mode 100644 test/questions/test-question.typ create mode 100644 test/questions/test-subquestion.typ diff --git a/README.md b/README.md index ffd2c9e..3bf0575 100644 --- a/README.md +++ b/README.md @@ -46,20 +46,20 @@ To use this package, simply add the following code to your document: show-grade-table: true, clarifications: "Answer the questions in the spaces provided. If you run out of room for an answer, continue on the back of the page." ) -#g-question(point:2.5)[Is it true that $x^n + y^n = z^n$ if $(x,y,z)$ and $n$ are positive integers?. Explain.] +#g-question(points:2.5)[Is it true that $x^n + y^n = z^n$ if $(x,y,z)$ and $n$ are positive integers?. Explain.] #v(1fr) -#g-question(point:2.5)[Prove that the real part of all non-trivial zeros of the function $zeta(z) "is" 1/2$]. +#g-question(points:2.5)[Prove that the real part of all non-trivial zeros of the function $zeta(z) "is" 1/2$]. #v(1fr) -#g-question(point:2)[Compute $ integral_0^infinity (sin(x))/x $ ] +#g-question(points:2)[Compute $ integral_0^infinity (sin(x))/x $ ] #v(1fr) ``` ## Changelog