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 elementfigure.add({ make: 'equation', elements: { s: { symbol: 'strike', style: 'cross', lineWidth: 0.01 }, }, forms: { form1: { strike: ['ABC', 's'] }, },}); Copy
// Define in elementfigure.add({ make: 'equation', elements: { s: { symbol: 'strike', style: 'cross', lineWidth: 0.01 }, }, forms: { form1: { strike: ['ABC', 's'] }, },});
// Forward Strikefigure.add({ make: 'equation', elements: { s: { symbol: 'strike', style: 'forward', lineWidth: 0.01 }, }, forms: { form1: { strike: ['ABC', 's'] }, },}); Copy
// Forward Strikefigure.add({ make: 'equation', elements: { s: { symbol: 'strike', style: 'forward', lineWidth: 0.01 }, }, forms: { form1: { strike: ['ABC', 's'] }, },});
// Back Strikefigure.add({ make: 'equation', elements: { s: { symbol: 'strike', style: 'back', lineWidth: 0.01 }, }, forms: { form1: { strike: ['ABC', 's'] }, },}); Copy
// Back Strikefigure.add({ make: 'equation', elements: { s: { symbol: 'strike', style: 'back', lineWidth: 0.01 }, }, forms: { form1: { strike: ['ABC', 's'] }, },});
// Horizontal Slashfigure.add({ make: 'equation', elements: { s: { symbol: 'strike', style: 'horizontal', lineWidth: 0.01 }, }, forms: { form1: { strike: ['ABC', 's'] }, },}); Copy
// Horizontal Slashfigure.add({ make: 'equation', elements: { s: { symbol: 'strike', style: 'horizontal', lineWidth: 0.01 }, }, forms: { form1: { strike: ['ABC', 's'] }, },});
// Define inline simple one usefigure.add({ make: 'equation', forms: { form1: { strike: ['ABC', 'strike'] }, },}); Copy
// Define inline simple one usefigure.add({ make: 'equation', forms: { form1: { strike: ['ABC', 'strike'] }, },});
// Define inline with reuseconst 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(); Copy
// Define inline with reuseconst 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 customizationfigure.add({ make: 'equation', forms: { form1: { strike: ['ABC', { strike: { style: 'forward' } }] }, },});@interface Copy
// Define inline with customizationfigure.add({ make: 'equation', forms: { form1: { strike: ['ABC', { strike: { style: 'forward' } }] }, },});@interface
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 backExample
Example
Example
Example
Example
Example
Example