diff options
author | Karl Berry <karl@freefriends.org> | 2006-01-09 00:44:40 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2006-01-09 00:44:40 +0000 |
commit | b4fc5f639874db951177ec539299d20908adb654 (patch) | |
tree | 52f08823ca58fffe3db6a9b075635038c567626c /Master/texmf-dist/doc/latex/interactiveworkbook/samplefiles/radio.tex | |
parent | dec3d98ebe442d7ea93efbaa8dd2e2be8149a467 (diff) |
doc 4
git-svn-id: svn://tug.org/texlive/trunk@80 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/interactiveworkbook/samplefiles/radio.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/interactiveworkbook/samplefiles/radio.tex | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/interactiveworkbook/samplefiles/radio.tex b/Master/texmf-dist/doc/latex/interactiveworkbook/samplefiles/radio.tex new file mode 100644 index 00000000000..ee2bd05ab09 --- /dev/null +++ b/Master/texmf-dist/doc/latex/interactiveworkbook/samplefiles/radio.tex @@ -0,0 +1,31 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% RADIO BUTTON LATEX FILE EXAMPLE: USES QUESTIONANDRESPONSES COMMAND, 7 ARGUMENTS +% 1ST ARGUMENT INDICATES THIS IS "RADIO" TYPE QUESTION +% 2ND, 3RD, 4TH ARGUMENTS GIVE NAMES OF PREVIOUS, INDEX, NEXT LINKING FILES +% 5TH ARGUMENT GIVES QUESTION, WITH UP TO 5 BUTTONS, AND +% WHETHER OR NOT THESE RADIO BUTTONS ARE "ON" OR "OFF" +% ONE AND ONLY ONE RADIO BUTTON IS ALLOWED TO BE "ON" +% 6TH, 7TH ARGUMENTS GIVE RESPONSES IF USER ANSWER CORRECT OR INCORRECT +% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +\documentclass[dvips]{article} +\usepackage{interactiveworkbook} % put in style directory; cannot appear in any other directory + +\begin{document} + +\questionandresponses{radio} % radio button kind of question +{popup.pdf}{ndex.pdf}{ndex.pdf} % previous, index and next files are 2nd, 3rd, 4th arguments +{Question 4. $\;$ A multiple radio button question. + \begin{center} + not the one \radioone{} \answerradioone{Off} $\quad\quad$ % incorrect answer is "Off" + nope \radiotwo{} \answerradiotwo{Off} $\quad\quad$ % another incorrect answer + not yet \radiothree{} \answerradiothree{Off} \\ % radiothree has no argument {} + On \radiofour{} \answerradiofour{On} $\quad\quad$ % *one* of five radio buttons "On" + Off \radiofive{} \answerradiofive{Off} % radiofive{} appears on question and response pages + \end{center} +} +{Yes, correct.} % correct response hint is 6th argument of questionandresponses command +{No, incorrect.} % incorrect response hint is 7th argument + +\end{document} |