2013-08-14 15:32:46 -04:00
|
|
|
% Task environment
|
|
|
|
|
|
|
|
\newcommand\taskname{Requisite}
|
|
|
|
|
|
|
|
\newcounter{taskc}
|
|
|
|
\setcounter{taskc}{0}
|
|
|
|
\renewcommand\thetaskc{\Roman{taskc}}
|
|
|
|
|
|
|
|
\newcounter{subtaskc}[taskc]
|
|
|
|
\setcounter{subtaskc}{0}
|
|
|
|
\renewcommand\thesubtaskc{%
|
|
|
|
\thetaskc\thesubtaskc@part
|
|
|
|
}
|
|
|
|
\def\thesubtaskc@part{%
|
|
|
|
\expandafter\ifnum\value{subtaskc}>0
|
|
|
|
-\alph{subtaskc}%
|
|
|
|
\fi
|
|
|
|
}
|
|
|
|
|
|
|
|
\newlength\taskspace
|
|
|
|
|
|
|
|
\newenvironment{task}[1][]%
|
|
|
|
{%
|
|
|
|
\setlength\taskspace{2ex}%
|
|
|
|
\refstepcounter{taskc}%
|
|
|
|
\begin{@task}[#1]%
|
|
|
|
}%
|
|
|
|
{\end{@task}\ignorespaces}
|
|
|
|
|
|
|
|
|
|
|
|
\newenvironment{subtask}[1][]%
|
|
|
|
{%
|
|
|
|
\list{}{%
|
|
|
|
\leftmargin4ex
|
|
|
|
\item\relax
|
|
|
|
}%
|
|
|
|
\setlength\taskspace{6ex}%
|
|
|
|
\refstepcounter{subtaskc}%
|
|
|
|
\begin{@task}[#1]%
|
|
|
|
}%
|
|
|
|
{%
|
|
|
|
\end{@task}%
|
|
|
|
\endlist
|
|
|
|
\ignorespaces
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
\newlength\@@subtaskcl
|
2013-08-15 09:41:25 -04:00
|
|
|
\newcount\@@hmin \newcount\@@hmax \newcount\@@hdiff \newcount\@@hconf
|
2013-08-14 15:32:46 -04:00
|
|
|
\newenvironment{@task}[1][]%
|
|
|
|
{%
|
|
|
|
\def\@@h{#1}%
|
|
|
|
\goodbreak\leavevmode\@margin@sig
|
|
|
|
\llap{%
|
2013-08-15 09:41:25 -04:00
|
|
|
\raisebox{-1.8\baselineskip}[0em][0em]{%
|
2013-08-14 15:32:46 -04:00
|
|
|
\shortstack{%
|
|
|
|
{\sc\taskname}\space\thesubtaskc
|
|
|
|
\\
|
|
|
|
\vphantom{M}%
|
|
|
|
\ifx\@@h\empty\else
|
|
|
|
{\small\@task@h#1||\,h}%
|
|
|
|
\fi%
|
2013-08-15 09:41:25 -04:00
|
|
|
\\
|
|
|
|
\vphantom{M}%
|
|
|
|
\ifx\@@h\empty\else
|
|
|
|
\@task@setregs#1||%
|
|
|
|
{\scriptsize \the\@@hconf\% Confidence}%
|
|
|
|
\fi%
|
2013-08-14 15:32:46 -04:00
|
|
|
}%
|
|
|
|
\hspace{\the\taskspace}%
|
|
|
|
% adjust width of the subtask text so that the task number lines up
|
|
|
|
\settowidth\@@subtaskcl{\thesubtaskc@part}%
|
|
|
|
\hspace{-\the\@@subtaskcl}%
|
|
|
|
}%
|
|
|
|
}%
|
|
|
|
\ignorespaces
|
|
|
|
}%
|
|
|
|
{\goodbreak\ignorespaces}
|
|
|
|
|
|
|
|
|
|
|
|
\def\@task@h#1-#2||{#1--#2}
|
2013-08-15 09:41:25 -04:00
|
|
|
\def\@task@setregs#1-#2||{%
|
|
|
|
\@@hmin#1\relax
|
|
|
|
\@@hmax#2\relax
|
|
|
|
% perform calculation (be sure to multiply by 100 before dividing, otherwise
|
|
|
|
% we lose everything through integer truncation); the calculation is:
|
|
|
|
% 100 - ((|N-M|/M)*100)
|
|
|
|
\@@hdiff#2\relax \advance\@@hdiff-#1\relax
|
|
|
|
\@@hconf\@@hdiff
|
|
|
|
\multiply\@@hconf by 100\relax
|
|
|
|
\divide\@@hconf by-\@@hmax
|
|
|
|
\advance\@@hconf by 100\relax
|
|
|
|
}
|