How can i put a symbolic math in Symbol editor??

R

Reotaro Hashemoto

Guest
Hi,
I want to use the sumbol "Sigma" in symbol editor (and other latin
mathematical symbols, such as Beta, Alpha, etc.)
How can i make that??
Thanks in advance,
 
Add -> Note -> Note Text ...
Font Style == math

Bernd

Reotaro Hashemoto wrote:
Hi,
I want to use the sumbol "Sigma" in symbol editor (and other latin
mathematical symbols, such as Beta, Alpha, etc.)
How can i make that??
Thanks in advance,
 
Hi,
I want to use the sumbol "Sigma" in symbol editor (and other latin
mathematical symbols, such as Beta, Alpha, etc.)
Couldn't post yesterday due to a problem with our news server.

I wanted to leave this piece of SKILL to create a "character table" for the math font.

Stéphane


cv=dbOpenCellViewByType("MYLIB" "math" "schematic" "schematic" "w" nil )
for( i 32 127
schCreateNoteLabel(
cv
list(2*(i/16) -mod((i-32) 16)*0.5)
sprintf(nil "%c" intToChar(i))
"lowerLeft"
"R0"
"math"
0.25
"normalLabel"
)
schCreateNoteLabel(
cv
list(2*(i/16) -mod((i-32) 16)*0.5)
sprintf(nil "%c=" intToChar(i))
"lowerRight"
"R0"
"stick"
0.25
"normalLabel"
)
)
dbSave(cv)
dbClose(cv)
 

Welcome to EDABoard.com

Sponsor

Back
Top