figureone
    Preparing search index...

    Strike equation symbol used in EQN_Strike.

    Integral equation symbol used with the EQN_Strike and EQN_StrikeComment equation functions.

    Four styles of strike symbol are available:

    
    
             000         000
               000     000
                 000 000
                   000                       0000000000000000
                 000 000
               000     000
             000         000
                  cross                         horizontal
    
    
                         000                 000
                       000                     000
                     000                         000
                   000                             000
                 000                                 000
               000                                     000
             000                                         000
                forward                        back
    
    
    // Define in element
    figure.add({
    make: 'equation',
    elements: {
    s: { symbol: 'strike', style: 'cross', lineWidth: 0.01 },
    },
    forms: {
    form1: { strike: ['ABC', 's'] },
    },
    });
    // Forward Strike
    figure.add({
    make: 'equation',
    elements: {
    s: { symbol: 'strike', style: 'forward', lineWidth: 0.01 },
    },
    forms: {
    form1: { strike: ['ABC', 's'] },
    },
    });
    // Back Strike
    figure.add({
    make: 'equation',
    elements: {
    s: { symbol: 'strike', style: 'back', lineWidth: 0.01 },
    },
    forms: {
    form1: { strike: ['ABC', 's'] },
    },
    });
    // Horizontal Slash
    figure.add({
    make: 'equation',
    elements: {
    s: { symbol: 'strike', style: 'horizontal', lineWidth: 0.01 },
    },
    forms: {
    form1: { strike: ['ABC', 's'] },
    },
    });
    // Define inline simple one use
    figure.add({
    make: 'equation',
    forms: {
    form1: { strike: ['ABC', 'strike'] },
    },
    });
    // Define inline with reuse
    const eqn = figure.add({
    make: 'equation',
    forms: {
    form1: { strike: ['ABC', 's1_strike'] },
    form2: { strike: ['DEFGH', 's1'] },
    },
    });
    eqn.animations.new()
    .goToForm({ delay: 1, target: 'form2', animate: 'move' })
    .start();
    // Define inline with customization
    figure.add({
    make: 'equation',
    forms: {
    form1: { strike: ['ABC', { strike: { style: 'forward' } }] },
    },
    });
    @interface