How to divide arc, line, and angle with a certain ratio?
up vote
3
down vote
favorite
A simple example:
documentclass[12pt,border=5pt]{standalone}
usepackage{newcent,pstricks,pst-eucl}
usepackage{auto-pst-pdf}
begin{document}
begin{pspicture}
pstTriangle(2,4){A}(0,0){B}(6,0){C}
pstCircleABC[PosAngle=60]{A}{B}{C}{O}
end{pspicture}
end{document}
The result of compiling:
Question 1:
How to get a point M such as MA=2/3AB, or more generally MA=(a/b)AB and a point M' belong to small arc CA such as arc M'A=2/3AB, or more generally M'A=(a/b)AB.
Question 2:
How to get bisector of angle A BUT are two bisectors or three bisectors.
Responding to AS'comment below.
pstricks pst-eucl
add a comment |
up vote
3
down vote
favorite
A simple example:
documentclass[12pt,border=5pt]{standalone}
usepackage{newcent,pstricks,pst-eucl}
usepackage{auto-pst-pdf}
begin{document}
begin{pspicture}
pstTriangle(2,4){A}(0,0){B}(6,0){C}
pstCircleABC[PosAngle=60]{A}{B}{C}{O}
end{pspicture}
end{document}
The result of compiling:
Question 1:
How to get a point M such as MA=2/3AB, or more generally MA=(a/b)AB and a point M' belong to small arc CA such as arc M'A=2/3AB, or more generally M'A=(a/b)AB.
Question 2:
How to get bisector of angle A BUT are two bisectors or three bisectors.
Responding to AS'comment below.
pstricks pst-eucl
Can you explain your second question more clearly please? what do you mean by "BUT are ..."
– Thruston
1 hour ago
@Thruston In pst-eucl documentation, only to draw one bisector, " BUT are " is equivalent " to get". My English is not so good. :-))
– chishimotoji
1 hour ago
add a comment |
up vote
3
down vote
favorite
up vote
3
down vote
favorite
A simple example:
documentclass[12pt,border=5pt]{standalone}
usepackage{newcent,pstricks,pst-eucl}
usepackage{auto-pst-pdf}
begin{document}
begin{pspicture}
pstTriangle(2,4){A}(0,0){B}(6,0){C}
pstCircleABC[PosAngle=60]{A}{B}{C}{O}
end{pspicture}
end{document}
The result of compiling:
Question 1:
How to get a point M such as MA=2/3AB, or more generally MA=(a/b)AB and a point M' belong to small arc CA such as arc M'A=2/3AB, or more generally M'A=(a/b)AB.
Question 2:
How to get bisector of angle A BUT are two bisectors or three bisectors.
Responding to AS'comment below.
pstricks pst-eucl
A simple example:
documentclass[12pt,border=5pt]{standalone}
usepackage{newcent,pstricks,pst-eucl}
usepackage{auto-pst-pdf}
begin{document}
begin{pspicture}
pstTriangle(2,4){A}(0,0){B}(6,0){C}
pstCircleABC[PosAngle=60]{A}{B}{C}{O}
end{pspicture}
end{document}
The result of compiling:
Question 1:
How to get a point M such as MA=2/3AB, or more generally MA=(a/b)AB and a point M' belong to small arc CA such as arc M'A=2/3AB, or more generally M'A=(a/b)AB.
Question 2:
How to get bisector of angle A BUT are two bisectors or three bisectors.
Responding to AS'comment below.
pstricks pst-eucl
pstricks pst-eucl
edited 10 mins ago
Artificial Stupidity
4,54611039
4,54611039
asked 1 hour ago
chishimotoji
469212
469212
Can you explain your second question more clearly please? what do you mean by "BUT are ..."
– Thruston
1 hour ago
@Thruston In pst-eucl documentation, only to draw one bisector, " BUT are " is equivalent " to get". My English is not so good. :-))
– chishimotoji
1 hour ago
add a comment |
Can you explain your second question more clearly please? what do you mean by "BUT are ..."
– Thruston
1 hour ago
@Thruston In pst-eucl documentation, only to draw one bisector, " BUT are " is equivalent " to get". My English is not so good. :-))
– chishimotoji
1 hour ago
Can you explain your second question more clearly please? what do you mean by "BUT are ..."
– Thruston
1 hour ago
Can you explain your second question more clearly please? what do you mean by "BUT are ..."
– Thruston
1 hour ago
@Thruston In pst-eucl documentation, only to draw one bisector, " BUT are " is equivalent " to get". My English is not so good. :-))
– chishimotoji
1 hour ago
@Thruston In pst-eucl documentation, only to draw one bisector, " BUT are " is equivalent " to get". My English is not so good. :-))
– chishimotoji
1 hour ago
add a comment |
2 Answers
2
active
oldest
votes
up vote
1
down vote
accepted
Step 1
documentclass[pstricks,12pt,border=15pt]{standalone}
usepackage{pst-eucl}
begin{document}
begin{pspicture}[showgrid](-1,-3)(7,5)
pstTriangle(2,4){A}(0,0){B}(6,0){C}
pstCircleABC[PosAngle=60]{A}{B}{C}{O}
pstHomO[HomCoef=0.6666]{A}{B}[M]% 2/3 --> 0.6666
end{pspicture}
end{document}
Note: HomCoef
cannot accept RPN 2 3 div
so I have to insert 0.6666
(3 decimals places should suffice, I think).
Step 2
documentclass[pstricks,12pt,border=15pt]{standalone}
usepackage{pst-eucl}
begin{document}
begin{pspicture}[showgrid](-1,-3)(7,5)
pstTriangle(2,4){A}(0,0){B}(6,0){C}
pstCircleABC[PosAngle=60]{A}{B}{C}{O}
pstHomO[HomCoef=0.6666]{A}{B}[M]% 2/3 --> 0.6666
pstRotation[AngleCoef=0.3333,RotAngle=pstAngleAOB{C}{O}{A}]{O}{C}[M']
end{pspicture}
end{document}
Note: AngleCoef
must come before RotAngle
. It is not commutative!
Step 3 (Final)
documentclass[pstricks,12pt,border=15pt]{standalone}
usepackage{pst-eucl}
begin{document}
begin{pspicture}[showgrid=false](-1,-3)(7,5)
pstTriangle(2,4){A}(0,0){B}(6,0){C}
pstCircleABC[PosAngle=225]{A}{B}{C}{O}
pstHomO[HomCoef=0.6666]{A}{B}[M]% 2/3 --> 0.6666
pstRotation[AngleCoef=0.3333,RotAngle=pstAngleAOB{C}{O}{A}]{O}{C}[M']
psset{PointName=none,PointSymbol=none}
pstRotation[AngleCoef=0.3333,RotAngle=pstAngleAOB{B}{A}{C}]{A}{B}[P1]
pstRotation[AngleCoef=0.6666,RotAngle=pstAngleAOB{B}{A}{C}]{A}{B}[P2]
pstInterLL{B}{C}{A}{P1}{Q1}
pstInterLL{B}{C}{A}{P2}{Q2}
psset{Mark=MarkHash,MarkAngle=90,MarkAngleRadius=.8}
pstMarkAngle{B}{A}{Q1}{}
pstMarkAngle{Q1}{A}{Q2}{}
pstMarkAngle{Q2}{A}{C}{}
psset{linestyle=dashed}
psline(A)(Q1)
psline(A)(Q2)
end{pspicture}
end{document}
Note: We have pstSegmentMark
(ends with Mark
) to mark a segment but we have pstMarkAngle
(begins with Mark
) to mark an angle. It seems the package author likes making inconsistent names.
add a comment |
up vote
2
down vote
documentclass[pstricks,12pt,border=15pt]{standalone}
usepackage{pst-eucl}
begin{document}
begin{pspicture}[showgrid](-1,-3)(7,5)
pstTriangle(2,4){A}(0,0){B}(6,0){C}
pstCircleABC[PosAngle=60]{A}{B}{C}{O}
pstHomO[HomCoef=0.667]{A}{B}[M]
pstRotation[AngleCoef=0.333,RotAngle=pstAngleAOB{C}{O}{A}]{O}{C}[M']
psset{PointSymbol=none,PointName=none}
pstRotation[AngleCoef=0.333,RotAngle=pstAngleAOB{B}{A}{C}]{A}{B}[M1]
pstRotation[AngleCoef=0.667,RotAngle=pstAngleAOB{B}{A}{C}]{A}{B}[M2]
pcline[linestyle=dashed](A)(M1)
pcline[linestyle=dashed](A)(M2)
end{pspicture}
end{document}
Examples in its documentation are very generally. :(((
– chishimotoji
25 mins ago
Thank you for your answer. :-))
– chishimotoji
19 mins ago
Mr. Herbert, could you modify theHomCoef
andAngleCoef
to be able to accept postfix notation? :-)
– Artificial Stupidity
3 mins ago
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
Step 1
documentclass[pstricks,12pt,border=15pt]{standalone}
usepackage{pst-eucl}
begin{document}
begin{pspicture}[showgrid](-1,-3)(7,5)
pstTriangle(2,4){A}(0,0){B}(6,0){C}
pstCircleABC[PosAngle=60]{A}{B}{C}{O}
pstHomO[HomCoef=0.6666]{A}{B}[M]% 2/3 --> 0.6666
end{pspicture}
end{document}
Note: HomCoef
cannot accept RPN 2 3 div
so I have to insert 0.6666
(3 decimals places should suffice, I think).
Step 2
documentclass[pstricks,12pt,border=15pt]{standalone}
usepackage{pst-eucl}
begin{document}
begin{pspicture}[showgrid](-1,-3)(7,5)
pstTriangle(2,4){A}(0,0){B}(6,0){C}
pstCircleABC[PosAngle=60]{A}{B}{C}{O}
pstHomO[HomCoef=0.6666]{A}{B}[M]% 2/3 --> 0.6666
pstRotation[AngleCoef=0.3333,RotAngle=pstAngleAOB{C}{O}{A}]{O}{C}[M']
end{pspicture}
end{document}
Note: AngleCoef
must come before RotAngle
. It is not commutative!
Step 3 (Final)
documentclass[pstricks,12pt,border=15pt]{standalone}
usepackage{pst-eucl}
begin{document}
begin{pspicture}[showgrid=false](-1,-3)(7,5)
pstTriangle(2,4){A}(0,0){B}(6,0){C}
pstCircleABC[PosAngle=225]{A}{B}{C}{O}
pstHomO[HomCoef=0.6666]{A}{B}[M]% 2/3 --> 0.6666
pstRotation[AngleCoef=0.3333,RotAngle=pstAngleAOB{C}{O}{A}]{O}{C}[M']
psset{PointName=none,PointSymbol=none}
pstRotation[AngleCoef=0.3333,RotAngle=pstAngleAOB{B}{A}{C}]{A}{B}[P1]
pstRotation[AngleCoef=0.6666,RotAngle=pstAngleAOB{B}{A}{C}]{A}{B}[P2]
pstInterLL{B}{C}{A}{P1}{Q1}
pstInterLL{B}{C}{A}{P2}{Q2}
psset{Mark=MarkHash,MarkAngle=90,MarkAngleRadius=.8}
pstMarkAngle{B}{A}{Q1}{}
pstMarkAngle{Q1}{A}{Q2}{}
pstMarkAngle{Q2}{A}{C}{}
psset{linestyle=dashed}
psline(A)(Q1)
psline(A)(Q2)
end{pspicture}
end{document}
Note: We have pstSegmentMark
(ends with Mark
) to mark a segment but we have pstMarkAngle
(begins with Mark
) to mark an angle. It seems the package author likes making inconsistent names.
add a comment |
up vote
1
down vote
accepted
Step 1
documentclass[pstricks,12pt,border=15pt]{standalone}
usepackage{pst-eucl}
begin{document}
begin{pspicture}[showgrid](-1,-3)(7,5)
pstTriangle(2,4){A}(0,0){B}(6,0){C}
pstCircleABC[PosAngle=60]{A}{B}{C}{O}
pstHomO[HomCoef=0.6666]{A}{B}[M]% 2/3 --> 0.6666
end{pspicture}
end{document}
Note: HomCoef
cannot accept RPN 2 3 div
so I have to insert 0.6666
(3 decimals places should suffice, I think).
Step 2
documentclass[pstricks,12pt,border=15pt]{standalone}
usepackage{pst-eucl}
begin{document}
begin{pspicture}[showgrid](-1,-3)(7,5)
pstTriangle(2,4){A}(0,0){B}(6,0){C}
pstCircleABC[PosAngle=60]{A}{B}{C}{O}
pstHomO[HomCoef=0.6666]{A}{B}[M]% 2/3 --> 0.6666
pstRotation[AngleCoef=0.3333,RotAngle=pstAngleAOB{C}{O}{A}]{O}{C}[M']
end{pspicture}
end{document}
Note: AngleCoef
must come before RotAngle
. It is not commutative!
Step 3 (Final)
documentclass[pstricks,12pt,border=15pt]{standalone}
usepackage{pst-eucl}
begin{document}
begin{pspicture}[showgrid=false](-1,-3)(7,5)
pstTriangle(2,4){A}(0,0){B}(6,0){C}
pstCircleABC[PosAngle=225]{A}{B}{C}{O}
pstHomO[HomCoef=0.6666]{A}{B}[M]% 2/3 --> 0.6666
pstRotation[AngleCoef=0.3333,RotAngle=pstAngleAOB{C}{O}{A}]{O}{C}[M']
psset{PointName=none,PointSymbol=none}
pstRotation[AngleCoef=0.3333,RotAngle=pstAngleAOB{B}{A}{C}]{A}{B}[P1]
pstRotation[AngleCoef=0.6666,RotAngle=pstAngleAOB{B}{A}{C}]{A}{B}[P2]
pstInterLL{B}{C}{A}{P1}{Q1}
pstInterLL{B}{C}{A}{P2}{Q2}
psset{Mark=MarkHash,MarkAngle=90,MarkAngleRadius=.8}
pstMarkAngle{B}{A}{Q1}{}
pstMarkAngle{Q1}{A}{Q2}{}
pstMarkAngle{Q2}{A}{C}{}
psset{linestyle=dashed}
psline(A)(Q1)
psline(A)(Q2)
end{pspicture}
end{document}
Note: We have pstSegmentMark
(ends with Mark
) to mark a segment but we have pstMarkAngle
(begins with Mark
) to mark an angle. It seems the package author likes making inconsistent names.
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
Step 1
documentclass[pstricks,12pt,border=15pt]{standalone}
usepackage{pst-eucl}
begin{document}
begin{pspicture}[showgrid](-1,-3)(7,5)
pstTriangle(2,4){A}(0,0){B}(6,0){C}
pstCircleABC[PosAngle=60]{A}{B}{C}{O}
pstHomO[HomCoef=0.6666]{A}{B}[M]% 2/3 --> 0.6666
end{pspicture}
end{document}
Note: HomCoef
cannot accept RPN 2 3 div
so I have to insert 0.6666
(3 decimals places should suffice, I think).
Step 2
documentclass[pstricks,12pt,border=15pt]{standalone}
usepackage{pst-eucl}
begin{document}
begin{pspicture}[showgrid](-1,-3)(7,5)
pstTriangle(2,4){A}(0,0){B}(6,0){C}
pstCircleABC[PosAngle=60]{A}{B}{C}{O}
pstHomO[HomCoef=0.6666]{A}{B}[M]% 2/3 --> 0.6666
pstRotation[AngleCoef=0.3333,RotAngle=pstAngleAOB{C}{O}{A}]{O}{C}[M']
end{pspicture}
end{document}
Note: AngleCoef
must come before RotAngle
. It is not commutative!
Step 3 (Final)
documentclass[pstricks,12pt,border=15pt]{standalone}
usepackage{pst-eucl}
begin{document}
begin{pspicture}[showgrid=false](-1,-3)(7,5)
pstTriangle(2,4){A}(0,0){B}(6,0){C}
pstCircleABC[PosAngle=225]{A}{B}{C}{O}
pstHomO[HomCoef=0.6666]{A}{B}[M]% 2/3 --> 0.6666
pstRotation[AngleCoef=0.3333,RotAngle=pstAngleAOB{C}{O}{A}]{O}{C}[M']
psset{PointName=none,PointSymbol=none}
pstRotation[AngleCoef=0.3333,RotAngle=pstAngleAOB{B}{A}{C}]{A}{B}[P1]
pstRotation[AngleCoef=0.6666,RotAngle=pstAngleAOB{B}{A}{C}]{A}{B}[P2]
pstInterLL{B}{C}{A}{P1}{Q1}
pstInterLL{B}{C}{A}{P2}{Q2}
psset{Mark=MarkHash,MarkAngle=90,MarkAngleRadius=.8}
pstMarkAngle{B}{A}{Q1}{}
pstMarkAngle{Q1}{A}{Q2}{}
pstMarkAngle{Q2}{A}{C}{}
psset{linestyle=dashed}
psline(A)(Q1)
psline(A)(Q2)
end{pspicture}
end{document}
Note: We have pstSegmentMark
(ends with Mark
) to mark a segment but we have pstMarkAngle
(begins with Mark
) to mark an angle. It seems the package author likes making inconsistent names.
Step 1
documentclass[pstricks,12pt,border=15pt]{standalone}
usepackage{pst-eucl}
begin{document}
begin{pspicture}[showgrid](-1,-3)(7,5)
pstTriangle(2,4){A}(0,0){B}(6,0){C}
pstCircleABC[PosAngle=60]{A}{B}{C}{O}
pstHomO[HomCoef=0.6666]{A}{B}[M]% 2/3 --> 0.6666
end{pspicture}
end{document}
Note: HomCoef
cannot accept RPN 2 3 div
so I have to insert 0.6666
(3 decimals places should suffice, I think).
Step 2
documentclass[pstricks,12pt,border=15pt]{standalone}
usepackage{pst-eucl}
begin{document}
begin{pspicture}[showgrid](-1,-3)(7,5)
pstTriangle(2,4){A}(0,0){B}(6,0){C}
pstCircleABC[PosAngle=60]{A}{B}{C}{O}
pstHomO[HomCoef=0.6666]{A}{B}[M]% 2/3 --> 0.6666
pstRotation[AngleCoef=0.3333,RotAngle=pstAngleAOB{C}{O}{A}]{O}{C}[M']
end{pspicture}
end{document}
Note: AngleCoef
must come before RotAngle
. It is not commutative!
Step 3 (Final)
documentclass[pstricks,12pt,border=15pt]{standalone}
usepackage{pst-eucl}
begin{document}
begin{pspicture}[showgrid=false](-1,-3)(7,5)
pstTriangle(2,4){A}(0,0){B}(6,0){C}
pstCircleABC[PosAngle=225]{A}{B}{C}{O}
pstHomO[HomCoef=0.6666]{A}{B}[M]% 2/3 --> 0.6666
pstRotation[AngleCoef=0.3333,RotAngle=pstAngleAOB{C}{O}{A}]{O}{C}[M']
psset{PointName=none,PointSymbol=none}
pstRotation[AngleCoef=0.3333,RotAngle=pstAngleAOB{B}{A}{C}]{A}{B}[P1]
pstRotation[AngleCoef=0.6666,RotAngle=pstAngleAOB{B}{A}{C}]{A}{B}[P2]
pstInterLL{B}{C}{A}{P1}{Q1}
pstInterLL{B}{C}{A}{P2}{Q2}
psset{Mark=MarkHash,MarkAngle=90,MarkAngleRadius=.8}
pstMarkAngle{B}{A}{Q1}{}
pstMarkAngle{Q1}{A}{Q2}{}
pstMarkAngle{Q2}{A}{C}{}
psset{linestyle=dashed}
psline(A)(Q1)
psline(A)(Q2)
end{pspicture}
end{document}
Note: We have pstSegmentMark
(ends with Mark
) to mark a segment but we have pstMarkAngle
(begins with Mark
) to mark an angle. It seems the package author likes making inconsistent names.
edited 24 mins ago
answered 1 hour ago
Artificial Stupidity
4,54611039
4,54611039
add a comment |
add a comment |
up vote
2
down vote
documentclass[pstricks,12pt,border=15pt]{standalone}
usepackage{pst-eucl}
begin{document}
begin{pspicture}[showgrid](-1,-3)(7,5)
pstTriangle(2,4){A}(0,0){B}(6,0){C}
pstCircleABC[PosAngle=60]{A}{B}{C}{O}
pstHomO[HomCoef=0.667]{A}{B}[M]
pstRotation[AngleCoef=0.333,RotAngle=pstAngleAOB{C}{O}{A}]{O}{C}[M']
psset{PointSymbol=none,PointName=none}
pstRotation[AngleCoef=0.333,RotAngle=pstAngleAOB{B}{A}{C}]{A}{B}[M1]
pstRotation[AngleCoef=0.667,RotAngle=pstAngleAOB{B}{A}{C}]{A}{B}[M2]
pcline[linestyle=dashed](A)(M1)
pcline[linestyle=dashed](A)(M2)
end{pspicture}
end{document}
Examples in its documentation are very generally. :(((
– chishimotoji
25 mins ago
Thank you for your answer. :-))
– chishimotoji
19 mins ago
Mr. Herbert, could you modify theHomCoef
andAngleCoef
to be able to accept postfix notation? :-)
– Artificial Stupidity
3 mins ago
add a comment |
up vote
2
down vote
documentclass[pstricks,12pt,border=15pt]{standalone}
usepackage{pst-eucl}
begin{document}
begin{pspicture}[showgrid](-1,-3)(7,5)
pstTriangle(2,4){A}(0,0){B}(6,0){C}
pstCircleABC[PosAngle=60]{A}{B}{C}{O}
pstHomO[HomCoef=0.667]{A}{B}[M]
pstRotation[AngleCoef=0.333,RotAngle=pstAngleAOB{C}{O}{A}]{O}{C}[M']
psset{PointSymbol=none,PointName=none}
pstRotation[AngleCoef=0.333,RotAngle=pstAngleAOB{B}{A}{C}]{A}{B}[M1]
pstRotation[AngleCoef=0.667,RotAngle=pstAngleAOB{B}{A}{C}]{A}{B}[M2]
pcline[linestyle=dashed](A)(M1)
pcline[linestyle=dashed](A)(M2)
end{pspicture}
end{document}
Examples in its documentation are very generally. :(((
– chishimotoji
25 mins ago
Thank you for your answer. :-))
– chishimotoji
19 mins ago
Mr. Herbert, could you modify theHomCoef
andAngleCoef
to be able to accept postfix notation? :-)
– Artificial Stupidity
3 mins ago
add a comment |
up vote
2
down vote
up vote
2
down vote
documentclass[pstricks,12pt,border=15pt]{standalone}
usepackage{pst-eucl}
begin{document}
begin{pspicture}[showgrid](-1,-3)(7,5)
pstTriangle(2,4){A}(0,0){B}(6,0){C}
pstCircleABC[PosAngle=60]{A}{B}{C}{O}
pstHomO[HomCoef=0.667]{A}{B}[M]
pstRotation[AngleCoef=0.333,RotAngle=pstAngleAOB{C}{O}{A}]{O}{C}[M']
psset{PointSymbol=none,PointName=none}
pstRotation[AngleCoef=0.333,RotAngle=pstAngleAOB{B}{A}{C}]{A}{B}[M1]
pstRotation[AngleCoef=0.667,RotAngle=pstAngleAOB{B}{A}{C}]{A}{B}[M2]
pcline[linestyle=dashed](A)(M1)
pcline[linestyle=dashed](A)(M2)
end{pspicture}
end{document}
documentclass[pstricks,12pt,border=15pt]{standalone}
usepackage{pst-eucl}
begin{document}
begin{pspicture}[showgrid](-1,-3)(7,5)
pstTriangle(2,4){A}(0,0){B}(6,0){C}
pstCircleABC[PosAngle=60]{A}{B}{C}{O}
pstHomO[HomCoef=0.667]{A}{B}[M]
pstRotation[AngleCoef=0.333,RotAngle=pstAngleAOB{C}{O}{A}]{O}{C}[M']
psset{PointSymbol=none,PointName=none}
pstRotation[AngleCoef=0.333,RotAngle=pstAngleAOB{B}{A}{C}]{A}{B}[M1]
pstRotation[AngleCoef=0.667,RotAngle=pstAngleAOB{B}{A}{C}]{A}{B}[M2]
pcline[linestyle=dashed](A)(M1)
pcline[linestyle=dashed](A)(M2)
end{pspicture}
end{document}
edited 34 mins ago
answered 39 mins ago
Herbert
267k23406716
267k23406716
Examples in its documentation are very generally. :(((
– chishimotoji
25 mins ago
Thank you for your answer. :-))
– chishimotoji
19 mins ago
Mr. Herbert, could you modify theHomCoef
andAngleCoef
to be able to accept postfix notation? :-)
– Artificial Stupidity
3 mins ago
add a comment |
Examples in its documentation are very generally. :(((
– chishimotoji
25 mins ago
Thank you for your answer. :-))
– chishimotoji
19 mins ago
Mr. Herbert, could you modify theHomCoef
andAngleCoef
to be able to accept postfix notation? :-)
– Artificial Stupidity
3 mins ago
Examples in its documentation are very generally. :(((
– chishimotoji
25 mins ago
Examples in its documentation are very generally. :(((
– chishimotoji
25 mins ago
Thank you for your answer. :-))
– chishimotoji
19 mins ago
Thank you for your answer. :-))
– chishimotoji
19 mins ago
Mr. Herbert, could you modify the
HomCoef
and AngleCoef
to be able to accept postfix notation? :-)– Artificial Stupidity
3 mins ago
Mr. Herbert, could you modify the
HomCoef
and AngleCoef
to be able to accept postfix notation? :-)– Artificial Stupidity
3 mins ago
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f464092%2fhow-to-divide-arc-line-and-angle-with-a-certain-ratio%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Can you explain your second question more clearly please? what do you mean by "BUT are ..."
– Thruston
1 hour ago
@Thruston In pst-eucl documentation, only to draw one bisector, " BUT are " is equivalent " to get". My English is not so good. :-))
– chishimotoji
1 hour ago