Questions tagged [probsoln]

The probsoln-package allows the creation of problem sheets with randomly selected problems and optionally the solution.

The package is designed for lecturers who have to generate new problem sheets for their students on a regular basis (e.g. yearly) by randomly select­ing a specified number of problems defined in another file.

There is an option that can be passed to the package to determine whether or not the solutions should be printed.

39 questions
2
votes
1 answer

Use probsoln for non-latin characters

Here is the MWE: \documentclass{article} \usepackage[answers, usedefaultargs]{probsoln} \PSNrandseed{\time} \begin{document} \newproblem*{1}{% This is Q1} \newproblem*{2}{% This is Q2 करमल} \newproblem*{3}{% This is…
deshmukh
  • 2,435
  • 1
  • 26
  • 46
2
votes
0 answers

Handling subquestions using probsoln - How to add the main enunciate of an exercise, e.g., "Solve the following recurrences"

We wish to handle subquestions on classroom notes. In some situations, it is desired to present a specific subquestion (with its answer), but before presenting the subquestion, we wish to show the problem enunciation. In the example below, "Solve…
1
vote
0 answers

probsoln package: Too many }'s with \ExcludePreviousFile

I have used probsoln for a number of years and have found it incredibly useful. I am sincerely grateful to the author for providing this package. I have used it to specify the inclusion of specific problems and to select random problems, given a…
1
vote
0 answers

Problem with probsoln package

I use probsoln package to typeset exercise book. Here's my code. \documentclass[ headings=big, chapterprefix=true,% like in standard class "report", fontsize=10, a5paper ]{scrbook} \usepackage[utf8]{vietnam} \usepackage[inner=2cm, outer=1.3cm,…
1
vote
1 answer

probsoln custom numbering of questions

I want to change the numbering of exam questions using probsoln. At the moment it just starts each question directly beneath each other and numbering it as a list. I want it to look something like this: Question : Vraag 1 Whatever the question may…
1
vote
0 answers

How to print only solution sheet in the end of the document in probsoln package

I use: \newproblem{1}{bla bla bla}{ble ble ble} in an external file.tex. Then in my main file, I use: \loadallproblem.... \begin{enumerate} \foreachproblem[...]{\item \thisproblem} \end{enumerate} The question is how can I print only solution…
0
votes
0 answers

F6 key issues error: Record file not found

I try to press the F6 key and in the YouTube tutorials those who make the video pressing them all go well, but not me :(
0
votes
0 answers

"probsoln" package random default arguments

I'm trying to have random values as the default arguments for a question in probsoln. e.g.: In the following, a and b are random default arguments. \newproblem[2][{a}{b}]{ What is #1 multiplied by #2? } { FPeval(\result}{#1*#2} …