REM ***** BASIC ***** Sub Main End Sub sub left rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "←" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub up rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "↑" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub right rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "→" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub down rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "↓" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub revc rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "ɔ" args1(1).Name = "FontName" args1(1).Value = "Lucida Sans Unicode" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub specu rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "ʊ" args1(1).Name = "FontName" args1(1).Value = "Lucida Sans Unicode" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub th rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "ð" args1(1).Name = "FontName" args1(1).Value = "Lucida Sans Unicode" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub zs rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "Ʒ" args1(1).Name = "FontName" args1(1).Value = "Lucida Sans Unicode" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub sum rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "∑" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub equiv rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "≡" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub ae rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "æ" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub mormel rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "ə" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub biglambda rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "Λ" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub biggamma rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "Γ" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub bigxi rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "Ξ" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub prod rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "Π" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub bigomega rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "Ω" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub alpha rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "α" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub beta rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "β" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub gamma rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "γ" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub delta rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "δ" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub epsilon rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "ε" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub lambda rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "λ" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub mu rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "μ" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub xi rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "ξ" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub pi rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "π" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub rho rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "ρ" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub tau rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "τ" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub varphi rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "φ" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub omega rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "ω" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub pm rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "±" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub leftrightarrow rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "↔" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub partial rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "∂" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub triangle rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "∆" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub surd rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "√" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub infty rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "∞" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub int rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "∫" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub approx rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "≈" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub ne rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "≠" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub leq rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "≤" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub geq rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "≥" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub specn rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "ŋ" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub psi rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "ψ" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub sigma rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "σ" args1(1).Name = "FontName" args1(1).Value = "Times New Roman" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub ldots rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "…" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub nn rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "ℕ" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub qq rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "ℚ" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub rr rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "ℝ" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub zz rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "ℤ" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub leftarrow rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "⇐" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub rightarrow rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "⇒" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub iff rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "⇔" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub all rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "∀" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub exists rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "∃" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub nabla rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "∇" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub xxin rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "∈" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub notin rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "∉" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub ni rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "∋" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub mp rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "∓" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub xangle rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "∡" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub yangle rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "∢" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub notdiv rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "∤" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub land rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "∧" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub lor rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "∨" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub cap rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "∩" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub cup rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "∪" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub oint rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "∮" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub oint2 rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "∯" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub oint3 rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "∰" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub ll rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "≪" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub gg rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "≫" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub subset rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "⊂" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub supset rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "⊃" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub nesubset rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "⊄" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub nesupset rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "⊅" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub subseteq rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "⊆" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub supseteq rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "⊇" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub nesubseteq rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "⊈" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub nesupseteq rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "⊉" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub bigoplus rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "⊕" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub bigotimes rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "⊗" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub perp rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "⊥" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub rightangle rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "⊾" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub vdots rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "⋮" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub cdots rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "⋯" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub rddots rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "⋰" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub ddots rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "⋱" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub lceil rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "⌈" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub rceil rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "⌉" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub sub lfloor rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(1) as new com.sun.star.beans.PropertyValue args1(0).Name = "Symbols" args1(0).Value = "⌊" args1(1).Name = "FontName" args1(1).Value = "OpenSymbol" dispatcher.executeDispatch(document, ".uno:InsertSymbol", "", 0, args1()) end sub