Difference between revisions of "Quiz Templates"

From Grad Wiki
Jump to navigation Jump to search
(Created page with "We should put generic templates here, nothing class specific We should probably create a course directory that will house class specific resources")
 
Line 2: Line 2:
  
 
We should probably create a course directory that will house class specific resources
 
We should probably create a course directory that will house class specific resources
 +
 +
 +
<source lang="latex">
 +
 +
%a simple sample quiz
 +
 +
% !TEX TS-program = pdflatex
 +
% !TEX encoding = UTF-8 Unicode
 +
 +
\documentclass[11pt]{article}
 +
 +
\usepackage[utf8]{inputenc}
 +
 +
%%% PACKAGES
 +
\usepackage{booktabs}
 +
\usepackage{array}
 +
\usepackage{paralist}
 +
\usepackage{verbatim}
 +
\usepackage{subfig}
 +
\usepackage{parskip}
 +
\usepackage{graphicx}
 +
 +
\begin{document}
 +
 +
{\bf Math 3A Quiz 1 \hfill Name: \hspace{1 in}} \\
 +
{\bf July 4, 1776 \hfill Section: \hspace{1 in}}
 +
 +
You have ten minutes to complete this quiz. No calculators, textbooks, or notes are allowed.
 +
Show all work to receive full credit. Good luck!
 +
 +
 +
{\bf 1.} (5 points) Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec a diam lectus. Sed sit amet ipsum mauris.
 +
 +
 +
\vspace{3 in}
 +
{\bf 2.} (5 points) Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec a diam lectus. Sed sit amet ipsum mauris.
 +
 +
 +
%If you'd like to have three problems instead of two, change the value in 'vspace' to be smaller (eg 2 or even 1.5 inches).
 +
 +
\end{document}
 +
 +
</source>

Revision as of 15:47, 10 April 2015

We should put generic templates here, nothing class specific

We should probably create a course directory that will house class specific resources


<source lang="latex">

%a simple sample quiz

% !TEX TS-program = pdflatex % !TEX encoding = UTF-8 Unicode

\documentclass[11pt]{article}

\usepackage[utf8]{inputenc}

%%% PACKAGES \usepackage{booktabs} \usepackage{array} \usepackage{paralist} \usepackage{verbatim} \usepackage{subfig} \usepackage{parskip} \usepackage{graphicx}

\begin{document}

{\bf Math 3A Quiz 1 \hfill Name: \hspace{1 in}} \\ {\bf July 4, 1776 \hfill Section: \hspace{1 in}}

You have ten minutes to complete this quiz. No calculators, textbooks, or notes are allowed. Show all work to receive full credit. Good luck!


{\bf 1.} (5 points) Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec a diam lectus. Sed sit amet ipsum mauris.


\vspace{3 in} {\bf 2.} (5 points) Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec a diam lectus. Sed sit amet ipsum mauris.


%If you'd like to have three problems instead of two, change the value in 'vspace' to be smaller (eg 2 or even 1.5 inches).

\end{document}

</source>