comparison docs/Instructions/Instructions.tex @ 429:9bf8ecbcdc8a Dev_main

Index page now links to example APE project, example MUSHRA project, test creator, analysis page, citing info, GNU license, and instructions. Instructions and example project contain info on checkboxes.
author Brecht De Man <b.deman@qmul.ac.uk>
date Fri, 18 Dec 2015 18:26:46 +0000
parents 1c5894cdcb9c
children d9c7263cb871
comparison
equal deleted inserted replaced
428:a066b8bc556f 429:9bf8ecbcdc8a
30 30
31 We request that you acknowledge the authors and cite our work when using it \cite{waet}, see also CITING.txt. 31 We request that you acknowledge the authors and cite our work when using it \cite{waet}, see also CITING.txt.
32 32
33 The tool is available in its entirety including source code on \url{https://code.soundsoftware.ac.uk/projects/webaudioevaluationtool/}, under the GNU General Public License v3.0 (\url{http://choosealicense.com/licenses/gpl-3.0/}), see also LICENSE.txt. 33 The tool is available in its entirety including source code on \url{https://code.soundsoftware.ac.uk/projects/webaudioevaluationtool/}, under the GNU General Public License v3.0 (\url{http://choosealicense.com/licenses/gpl-3.0/}), see also LICENSE.txt.
34 34
35 % TO DO: Linux 35 % TO DO: Linux (Android, iOS)
36 36
37 \tableofcontents 37 \tableofcontents
38 38
39 \clearpage 39 \clearpage
40 40
255 \begin{description} 255 \begin{description}
256 \item[statement] Simply shows text to the subject until `Next' or `Start' is clicked. 256 \item[statement] Simply shows text to the subject until `Next' or `Start' is clicked.
257 \item[question] Expects a text answer (in a text box). Has the \texttt{boxsize} argument: set to ``large'' or ``huge'' for a bigger box size. 257 \item[question] Expects a text answer (in a text box). Has the \texttt{boxsize} argument: set to ``large'' or ``huge'' for a bigger box size.
258 \item[number] Expects a numerical value. Attribute \texttt{min="0"} specifies the minimum value - in this case the answer must be stricly positive before the subject can continue. 258 \item[number] Expects a numerical value. Attribute \texttt{min="0"} specifies the minimum value - in this case the answer must be stricly positive before the subject can continue.
259 \item[radio] Radio buttons. 259 \item[radio] Radio buttons.
260 \item[checkbox] Checkboxes.\\ 260 \item[checkbox] Checkboxes. Note that when making a checkbox question ``mandatory'', the subject is forced to select at least one option (which could be e.g. `Other' or `None').\\
261 \end{description} 261 \end{description}
262 262
263 \textbf{Example usage:}\\ 263 \textbf{Example usage:}\\
264 264
265 \lstset{ 265 \lstset{
292 <option name="bad">Bad</option> 292 <option name="bad">Bad</option>
293 <option name="poor">Poor</option> 293 <option name="poor">Poor</option>
294 <option name="good">Good</option> 294 <option name="good">Good</option>
295 <option name="great">Great</option> 295 <option name="great">Great</option>
296 </radio> 296 </radio>
297 <checkbox id="checkboxtest" mandatory="true">
298 <statement>Please select with which activities you have any experience (example checkbox question)</statement>
299 <option name="musician">Playing a musical instrument</option>
300 <option name="soundengineer">Recording or mixing audio</option>
301 </checkbox>
297 <statement>Thank you for taking this listening test. Please click 'Submit' and your results will appear in the 'saves/' folder.</statement> 302 <statement>Thank you for taking this listening test. Please click 'Submit' and your results will appear in the 'saves/' folder.</statement>
298 </PostTest> 303 </PostTest>
299 \end{lstlisting} 304 \end{lstlisting}
300 305
301 306
639 \item By participating, you consent to us using all collected data for research. Unless asked explicitly, all data will be anonymised when shared. 644 \item By participating, you consent to us using all collected data for research. Unless asked explicitly, all data will be anonymised when shared.
640 \end{itemize} 645 \end{itemize}
641 646
642 \clearpage 647 \clearpage
643 648
644 \section{Vocabulary} % just to keep track of what exactly we call things. Don't use terms that are too different, to avoid confusion. 649 \section{Terminology} % just to keep track of what exactly we call things. Don't use terms that are too different, to avoid confusion.
650 As a guide to better understand the Instructions, and to expand them later, here is a list of terms that may be unclear or ambiguous unless properly defined.
645 \begin{description} 651 \begin{description}
646 \item[Subject] The word we use for a participant, user, ... of the test, i.e. not the experimenter who designs the test but the person who evaluates the audio under test as part of an experiment (or the preparation of one). 652 \item[Subject] The word we use for a participant, user, ... of the test, i.e. not the experimenter who designs the test but the person who evaluates the audio under test as part of an experiment (or the preparation of one).
653 \item[User] The person who uses the tool to configure, run and analyse the test - i.e. the experimenter, most likely a researcher - or at least
647 \item[Page] A screen in a test; corresponds with an \texttt{audioholder} 654 \item[Page] A screen in a test; corresponds with an \texttt{audioholder}
648 \item[Fragment] An element or sample in a test; corresponds with an \texttt{audioelement} 655 \item[Fragment] An element or sample in a test; corresponds with an \texttt{audioelement}
649 \item[Test] A complete test which can consist of several pages; corresponds with an entire configuration XML file 656 \item[Test] A complete test which can consist of several pages; corresponds with an entire configuration XML file
650 \item[Configuration XML file] The XML file containing the necessary information on interface, samples, survey questions, configurations, ... which the JavaScript modules read to produce the desired test. 657 \item[Configuration XML file] The XML file containing the necessary information on interface, samples, survey questions, configurations, ... which the JavaScript modules read to produce the desired test.
651 \item[Results XML file] The output of a successful test, including ratings, comments, survey responses, timing information, and the complete configuration XML file with which the test was generated in the first place. 658 \item[Results XML file] The output of a successful test, including ratings, comments, survey responses, timing information, and the complete configuration XML file with which the test was generated in the first place.