diff options
author | Karl Berry <karl@freefriends.org> | 2007-08-18 18:35:29 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2007-08-18 18:35:29 +0000 |
commit | de5c7660489022ca4eaf6e610370ade975c45fd6 (patch) | |
tree | 77cc65eb4316861aecd15f0fc309fbf919035f60 /Master/texmf-dist/doc/latex/mathexam | |
parent | d39bc0334b38efc0575b9d46454fde0da5c1f1f6 (diff) |
new package mathexam
git-svn-id: svn://tug.org/texlive/trunk@4759 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/mathexam')
-rw-r--r-- | Master/texmf-dist/doc/latex/mathexam/README | 27 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/mathexam/mathexam.pdf | bin | 0 -> 132224 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/mathexam/sample.pdf | bin | 0 -> 47120 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/mathexam/sample.tex | 38 |
4 files changed, 65 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/mathexam/README b/Master/texmf-dist/doc/latex/mathexam/README new file mode 100644 index 00000000000..b9ff96eeeae --- /dev/null +++ b/Master/texmf-dist/doc/latex/mathexam/README @@ -0,0 +1,27 @@ +mathexam, a LaTeX package for typesetting exams. +Copyright (C) 2007 Jan Hlavacek + +This package can help you typeset exams (mostly in mathematics and related +disciplines where students are required to show their calculations followed by +one or more short answers). It provides commands for inclusion of space for +calculations, as well as commands for automatic creation of ``answer spaces''. +In addition, the package will automatically create page headers and footers, +and will let you include instructions and space for students to put their +name. + +Files: +README This file +mathexam.ins Batch file, run through LaTeX to generate mathexam.sty +mathexam.dtx Docstrip archive, run through LaTeX to generate documentation +doc: +sample.tex A sample exam +sample.pdf A pdf version of the sample exam +mathexam.pdf A pdf verrsion of the documentation + +This program may be distributed and/or modified under the +conditions of the LaTeX Project Public License, either version 1.2 +of this license or (at your option) any later version. +The latest version of this license is in + http://www.latex-project.org/lppl.txt +and version 1.2 or later is part of all distributions of LaTeX +version 1999/12/01 or later. diff --git a/Master/texmf-dist/doc/latex/mathexam/mathexam.pdf b/Master/texmf-dist/doc/latex/mathexam/mathexam.pdf Binary files differnew file mode 100644 index 00000000000..31d6857b420 --- /dev/null +++ b/Master/texmf-dist/doc/latex/mathexam/mathexam.pdf diff --git a/Master/texmf-dist/doc/latex/mathexam/sample.pdf b/Master/texmf-dist/doc/latex/mathexam/sample.pdf Binary files differnew file mode 100644 index 00000000000..3b5f9d44cb6 --- /dev/null +++ b/Master/texmf-dist/doc/latex/mathexam/sample.pdf diff --git a/Master/texmf-dist/doc/latex/mathexam/sample.tex b/Master/texmf-dist/doc/latex/mathexam/sample.tex new file mode 100644 index 00000000000..ebdbbe71ecc --- /dev/null +++ b/Master/texmf-dist/doc/latex/mathexam/sample.tex @@ -0,0 +1,38 @@ +\documentclass[fleqn]{article} +\usepackage[left=1in, right=1in, top=1in, bottom=1in]{geometry} +\usepackage{mathexam} +\usepackage{amsmath} + +\ExamClass{Sample Class} +\ExamName{Sample Exam} +\ExamHead{\today} + +\let\ds\displaystyle + +\begin{document} +\ExamInstrBox{ +Please show \textbf{all} your work! Answers without supporting work will not be given credit. Write answers in spaces provided. You have 1 hour and 50 minutes to complete this exam.} +\ExamNameLine +\begin{enumerate} + \item Calculate the following limits. If a limit is $\infty$ or $-\infty$, + please say so. Make sure you show all your work and justify all your + answers. + \begin{enumerate} + \item $\ds{\lim_{x\rightarrow3}\frac{\sqrt{x+1} - 2}{x-3}}$\answer + \item $\ds{\lim_{x\rightarrow0}\frac{\sin(4x)}{8x}}$\answer + \end{enumerate} + \item Use the $\varepsilon$-$\delta$ definition of limit to prove that + \[\lim_{x\rightarrow 2} x^2 - 3x + 2 = 0\]\noanswer[2.5in] + \newpage + \item If $h(x) = \sqrt{x^2 + 2} - 1$, find a \textbf{non-trivial} decomposition of $h$ into $f$ and $g$ such that $h = f\circ g$. + \answer*{$f(x)=$}\addanswer*{$g(x)=$} + \item Find the first two derivatives of the function $f(x) = x^2\cos(x)$. Simplify + your answers as much as possible. Show all your work. + \answer*{$f'(x)=$}\answer*{$f''(x)=$} + \newpage + \item Find the derivative of the function $\ds{f(x) = \int_{x^2}^2 + \frac{\cos(t)}{t} \,dt}$.\answer[1in plus 1fill] + \item Set up, but do not evaluate, the integral for the volume of the solid obtained by rotating the area between the curves $y = x$ and $y = \sqrt{x}$ about the $x$-axis.\noanswer +\end{enumerate} +\end{document} + |