Metadata-Version: 1.0
Name: latex2dnd
Version: 1.1.1
Summary: Generate edX drag-and-drop problems using compilation from latex
Home-page: http://pypi.python.org/pypi/latex2dnd/
Author: I. Chuang
Author-email: ichuang@mit.edu
License: LICENSE.txt
Description: latex2dnd
        =========
        
        Generate an edX drag-and-drop problem, complete with draggable labels, problem image, and
        solution image, from an input latex file.
        
        ![Example dnd problem image](https://github.com/mitocw/latex2dnd/raw/master/examples/example2/example2_dnd.png "Example drag-and-drop problem: quadratic formula")
        
        Installation
        ------------
        
            pip install -e git+https://github.com/mitocw/latex2dnd.git#egg=latex2dnd
        
        Note that pdftoppm is needed.  With osX and macbrew:
        
            brew install netpbm poppler
        
        A working latex installation is also required.
        
        Usage
        -----
        
        Usage: latex2dnd [options] [filename.tex | filename.dndspec]
        
        Options:
          --version             show program's version number and exit
          -h, --help            show this help message and exit
          -v, --verbose         verbose messages
          -V, --very-verbose    very verbose messages
          -C, --can-reuse-labels
                                allow draggable labels to be reusable
          -s, --skip-latex-compilation
                                skip latex compilation
          -d OUTPUT_DIR, --output-directory=OUTPUT_DIR
                                Directory name for output PNG files
          -c CONFIG_FILE, --config-file=CONFIG_FILE
                                configuration file to load
          -u IMAGE_URL, --url-for-images=IMAGE_URL
                                base URL for images
          -r RESOLUTION, --resolution=RESOLUTION
                                Resolution of PNG files in DPI (default 300), can set
                                to 'max' to auto-scale
          --cfn=CUSTOM_CFN      Name of python script check function to use for drag-
                                drop checking
          --output-tex          Final output should be a tex file (works when input is
                                a *.dndspec file)
          --cleanup             Remove old solution image files, and tmp.pdf
          --nonrandom           Do not use a random string in the solution filename
        
        Example
        -------
        
        See *.tex and *.dndspec files in the [examples directory](https://github.com/mitocw/latex2dnd/tree/master/examples).
        
        ![Another example dnd problem image](https://github.com/mitocw/latex2dnd/raw/master/examples/example5/example5_dnd.png "Example drag-and-drop problem: bloch sphere")
        
        Or: get quadratic.tex from the latex2dnd/testtex directory, and run this:
        
          latex2dnd quadratic.tex -r 220 -v
        
        this will generate 220dpi images, with the files:
        
            quadratic_dnd.xml -- edX drag-and-drop question XML
            ./quadratic_dnd.png -- dnd problem image
            ./quadratic_dnd_sol.png -- dnd problem solution image
            9 dnd draggable image labels:
                ./quadratic_dnd_label1.png -- label '1'
                ./quadratic_dnd_label2.png -- label '2'
                ./quadratic_dnd_label3.png -- label '3'
                ./quadratic_dnd_label4.png -- label '4'
                ./quadratic_dnd_label5.png -- label '5'
                ./quadratic_dnd_label6.png -- label '6'
                ./quadratic_dnd_label7.png -- label '7'
                ./quadratic_dnd_label8.png -- label '8'
                ./quadratic_dnd_label9.png -- label '9'
        
        Insert this into your course with (if you're using https://github.com/mitocw/latex2edx):
        
            \begin{edXproblem}{Latex to drag and drop test}{}
            
            \edXinclude{quadratic_dnd.xml}
            
            \end{edXproblem}    
        
        and copy the png files to /static/images/quadratic/
        
        LaTeX Macros
        ------------
        
        latex2dnd works by introducing three important new macros:
        
        1. \DDlabel{label_name}{label_contents}  
            -- label_name = alphanumeric name (no spaces) for the draggable label
            -- label_contents = latex string for contents of label (math ok, e.g. $\sqrt{a+b}$)
        
        2. \DDBox{box_name}{width}{height}{label_name}
            -- box_name = alphanumeric name (no spaces) for the target box
            -- width, height = size of target box
            -- label_name = name of label which gives correct label to go in this box (the answer)
        
        3. \writeDDlabels[height]
            -- height = optional argument which specifies the height of the labels (widths are automatic)
        
        Here is an example, giving the LaTeX code for a drag-and-drop question asking for the
        quadratic equation roots formula to be filled in:
        
            \documentclass{article}
            \input{latex2dnd}
            
            \begin{document}
            
            % define drag-drop labels
            \DDlabel{term1}{$-b$}
            \DDlabel{term1p}{$+b$}
            \DDlabel{term2}{$b^2$}
            \DDlabel{dubexp}{$b^{2^\alpha}$}
            \DDlabel{dubsub}{$b_{2_\alpha}$}
            \DDlabel{fac}{$-4ac$}
            \DDlabel{facp}{$+4ac$}
            \DDlabel{ta}{$+2a$}
            \DDlabel{tam}{$-2a$}
            
            % shorthand macro to make all boxes the same size (6 by 4)
            \newcommand\DDB[2]{\DDbox{#1}{6ex}{4ex}{#2}}
            
            % the formula with boxes
            $$\lambda = \frac{\DDB{1}{term1}\pm \sqrt{\DDB{2}{term2}\DDB{3}{fac}}}{\DDB{4}{ta}}$$
            
            % output labels, with fixed box heights
            \writeDDlabels[4.3ex]
            
            \end{document}
        
        Note that more labels are defined than just the correct ones.  This is the XML generated from the above example:
        
            <span>
              <customresponse>
               <drag_and_drop_input img="/static/images/quadratic/quadratic_dnd.png" target_outline="false" one_per_target="true" no_labels="true" label_bg_color="rgb(222, 139, 238)">
                  <draggable id="term1" icon="/static/images/quadratic/quadratic_dnd_label1.png"/>
                  <draggable id="term1p" icon="/static/images/quadratic/quadratic_dnd_label2.png"/>
                  <draggable id="term2" icon="/static/images/quadratic/quadratic_dnd_label3.png"/>
                  <draggable id="dubexp" icon="/static/images/quadratic/quadratic_dnd_label4.png"/>
                  <draggable id="dubsub" icon="/static/images/quadratic/quadratic_dnd_label5.png"/>
                  <draggable id="fac" icon="/static/images/quadratic/quadratic_dnd_label6.png"/>
                  <draggable id="facp" icon="/static/images/quadratic/quadratic_dnd_label7.png"/>
                  <draggable id="ta" icon="/static/images/quadratic/quadratic_dnd_label8.png"/>
                  <draggable id="tam" icon="/static/images/quadratic/quadratic_dnd_label9.png"/>
                  <target id="1" x="70" y="19" w="123" h="74"/>
                  <!-- answer=term1 -->
                  <target id="2" x="283" y="19" w="123" h="74"/>
                  <!-- answer=term2 -->
                  <target id="3" x="427" y="19" w="122" h="74"/>
                  <!-- answer=fac -->
                  <target id="4" x="249" y="129" w="122" h="74"/>
                  <!-- answer=ta -->
                </drag_and_drop_input>
                <answer>
            caset = [{'term1': '1'}, {'term2': '2'}, {'fac': '3'}, {'ta': '4'}]
            ca = [ {"draggables": ca.keys(),"targets": ca.values(),"rule":"exact"} for ca in caset ]
            if draganddrop.grade(submission[0], ca):
                correct = ["correct"]
            else:
                correct = ["incorrect"]
            </answer>
              </customresponse>
              <solution>
                <img src="/static/images/quadratic/quadratic_dnd_sol.png"/>
              </solution>
            </span>
        
        Simplified DND Specification
        ----------------------------
        
        LaTeX is powerful, but can be fragile.  A simpler way to write DND
        problems is to use a "dndspec" specification file; this provides a
        simple plain-text based representation of a DND problem.
        
        Example:
        
            MATCH_LABELS: G,m_1,m_2,R
            BEGIN_EXPRESSION
            \bea
            	\frac{ G m_1 m_2 }{ R }
            \nonumber
            \eea
            END_EXPRESSION
            CHECK_FORMULA: G * m_1 * m_2 / R
        
        This input.dndspec file describes a DND problem with the labels
        
            \DDlabel[G]{G}{$G$}
            \DDlabel[m1]{mone}{$m_1$}
            \DDlabel[m2]{mtwo}{$m_2$}
            \DDlabel[R]{R}{$R$}
        
        the DND expression (with boxes):
        
            \bea
            	\frac{ \DDB{1}{G} \DDB{2}{mone} \DDB{3}{mtwo} }{ \DDB{4}{R} }
            \nonumber
            \eea
        
        where this tex macro is automatically defined for the box:
        
            \newcommand\DDB[2]{\DDbox{#1}{8ex}{4ex}{#2}}
        
        and this check formula:
        
            \DDformula{  ([1]) * ([2]) * ([3]) / ([4])  }{ G,m1,m2,R@1,1,1,1:20,20,20,20\#20 }{  G * m1 * m2 / R  }{}
        
        Compile this using
        
            latex2dnd -v input.dndspec
        
        and you'll get input.tex as the DND latex file (which can be edited
        for futher customizations), together with all the usual output of latex2dnd.
        
        More formally:
        
            MATCH_LABELS: <comma separated list of labels appearing in EXPRESSION which should be made into boxes>
            DISTRACTOR_LABELS: <comma separated list of labels to be shown as draggables>
            ALL_LABELS: <comma separated list of MATCH and DISTRACTOR labels, in desired order, to be shown as draggables>
            BEGIN_EXPRESSION
                  <latex expression containing MATCH labels, with spaces around every label>
            END_EXPRESSION
            CHECK_FORMULA: <text representation of correct formula, using math expression version of the MATCH labels, to be used for checking>
            CHECK_FORMULA_BOXES: <formula using [#], where [#] is the MATCH label number; needed if MATCH labels appear in more than one input box>
            TEST_CORRECT: formula which should evaluate to being correct
            TEST_INCORRECT: formula which should evaluate to being incorrect
            BOX_HEIGHT: draggable label box height to use
            BOX_WIDTH: draggable label box width to use
            EXTRA_HEADER_TEX: a line with extra latex commands to be inserted into the header (may be used multiple times)
        
        There should be no leading spaces / indentation on lines with keywords (like MATCH_LABELS).
        
        Advanced usage
        --------------
        
        Here are some additional useful macros:
        
        `\DDoptions{}` -- extra configuration parameters, e.g. HIDE_FORMULA_INPUT, CAN_REUSE, and ALLOW_EMPTY
        
        `\DDformula{ pattern }{ samples }{ expected }` -- use formula checking to test correctness of drag-and-drop response.  For example:
        
            \DDformula{ [1] * [2] * [3] / [4] }{ G,m_1,m_2,d@1,1,1,1:20,20,20,20\#40 }{G*m_1*m_2/d^2}{}
        
        `\DDtest{ correct | incorrect }{ answer_box_ids }{ draggable_ids }` -- unit test to perform on DDformula expressions, e.g.
        
            \DDtest{correct}{1,2,3,4}{G,m2,m1,d2}
            \DDtest{incorrect}{1,2,3,4}{G,d2,m1,m2}
        
        Notes
        -----
        
        latex2dnd uses the "-region" feature of imagemagick's convert command,
        to white out solution boxes and generate the problem image.  Version
        7.0.4 of imagemagick appears to have a bug in how it handles
        "-region", causing the region specification to be ignored, and thus
        producing blank problem images (everything whited out).  If you
        encounter this problem, one workaround is to back out to version 6.9.1
        of imagemagick.
        
        History
        -------
        
        ```
        * v0.9.0: python package, with unit tests
        *     .1: add -C (can_reuse) flag
        *     .2: improved box alignment and pixel position computation
        *     .3: center labels in boxes; custom code when can_reuse=true
        *     .4: add formula grading and gravity.tex example
        *     .5: add \DDoptions{HIDE_FORMULA_INPUT} handling to not display formula input
        *     .6: add \DDoptins{CUSTOM_CFN=xxx} and --cfn=xxx command line for custom DND result check function
        * v1.0.0: add unit tests for DDformula, which automatically verify expected response is checked properly
        * v1.1.0: implement dndspec, a simplified DND problem specification language
        *     .1: more improvements to dndspec; use random string in solution image filename; add examples
        ```
        
Platform: UNKNOWN
