exsheets
?i.e. Does
exsheets
include a lot of features that only professional page-layout experts need to know while a much simpler version for making exercises and solutions for ~14-year-olds exists elsewhere?exsheets
?exsheets
include a lot of features that only professional page-layout experts need to know while a much simpler version for making exercises and solutions for ~14-year-olds exists elsewhere?NEW: TikZ book now 40% off at Amazon.com for a short time.
I don't think there is anything except the exsheets manual.LaTexLearner wrote:Can anybody recommend a simple, non-jargon-rich introduction toexsheets
?
See for example here http://www.ctan.org/topic/exerciseLaTexLearner wrote:And one more question: What are the alternatives toexsheets
?
The only thing I'd probably do different is this: I'd defineJohannes_B wrote:I am not very familiar with exsheets and i don't know all the bells and whistles.
Code: Select all
\newcommand*\questionspace[1]{\PrintSolutionsF{\examspace{#1}}}
Code: Select all
\SetupExSheets{solution/print = true}
This is of course because of the call ofLaTexLearner wrote:All the solutions, though, appeared below the all the exercises as if it were a separate section...
\printsolutions
at the end of the example. If you comment this or remove it there will be no solutions printed.Dare I ask what all those other packages were for? i.e. tasks, url, grffileJohannes_B wrote:Code: Select all
\documentclass{article} \usepackage[left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry} \newlength{\ALT} \setlength{\ALT}{0.5pt} \newlength{\DLL} \setlength{\DLL}{1.5cm} \newcommand{\AS}[1][\DLL]{\rule{#1}{\ALT}} \usepackage{exsheets} \usepackage{tasks} \usepackage{url} \usepackage{grffile} \usepackage{siunitx} \begin{document} \section{The Purpose and Definition of Fractions} \begin{question} What is the mathematical purpose of fractions? Illustrate your answer by describing and drawing a situation of sharing cakes that can be solved with whole numbers and a similar situation that requires fractions to solve. \examspace{3cm} \end{question} \begin{solution}%[print] \includegraphics[width=.4\textwidth]{504px-Cake_quarters.svg.png}\par \url{https://commons.wikimedia.org/wiki/File:Cake_quarters.svg} \end{solution} \begin{question} Bill, Susan, and Michael purchase a 2\,m (\SI{2}{\meter}) candy rope. If they share it equally, how much candy rope will they each get? Use a diagram to support your answer. \end{question} \begin{solution} Each one gets \SI{.666666667}{m}.\par Each one gets \SI{2/3}{m}. \end{solution} \begin{question} What is a \emph{denominator} and what does it tell you about a fraction? \end{question} \begin{solution} Below line \end{solution} \begin{question} What is a \emph{numerator} and what does it tell you about a fraction? \end{question} \begin{solution} Above line \end{solution} \begin{question} Write an equation with a fraction equal to a whole number. \(\AS = \AS\) \end{question} \begin{question} Write an approximate equation with a fraction that is almost equal to a whole number and that whole number. \AS \(\approx\) \AS\par \( \AS \approx \AS \)%Compare the spacing \end{question} \printsolutions \end{document}
tasks is for lists where the items can be arranged in columns but are numbered from left to right rather than from top to bottom. url mostly provides the macroLaTexLearner wrote:Dare I ask what all those other packages were for? i.e. tasks, url, grffile siunitx
\url
for typesetting web adresses. siunitx is for consistent and typographically correct typesetting of numbers and units. grffile extends the file name processing of the graphics package to support a larger range of file names.texdoc
followed by the package name and hit enter.NEW: TikZ book now 40% off at Amazon.com for a short time.