How to fix it with pstextpath and pscharpath?












2














documentclass[pstricks]{article}
usepackage{pst-text,amsmath,pst-eucl,amssymb}
begin{document}
begin{pspicture}[showgrid]

DeclareFixedFont{RM}{T1}{ptm}{b}{n}{30pt}
pstextpath[c](0,1.5ex){psarcn[linestyle=none](3,0){5cm}{135}{45}}
{RM Welcom to LaTeX}

end{pspicture}
end{document}


enter image description here



Question 1: How to show letter "A" of LaTeX clearly?



%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%



When I replace



 pstextpath[c](0,1.5ex){psarcn[linestyle=none](3,0){5cm}{135}{45}}{RM Welcom to LaTeX} 


by



 pstextpath[c](0,1.5ex){psarcn[linestyle=none](3,0){5cm}{135}{45}}{pscharpath{RM Welcom to LaTeX}}


It produces



enter image description here



Question:



How to its result like first result (of course question 1 has already been solved )?










share|improve this question
























  • I always share useful things to others.
    – God Must Be Crazy
    Dec 21 '18 at 13:20
















2














documentclass[pstricks]{article}
usepackage{pst-text,amsmath,pst-eucl,amssymb}
begin{document}
begin{pspicture}[showgrid]

DeclareFixedFont{RM}{T1}{ptm}{b}{n}{30pt}
pstextpath[c](0,1.5ex){psarcn[linestyle=none](3,0){5cm}{135}{45}}
{RM Welcom to LaTeX}

end{pspicture}
end{document}


enter image description here



Question 1: How to show letter "A" of LaTeX clearly?



%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%



When I replace



 pstextpath[c](0,1.5ex){psarcn[linestyle=none](3,0){5cm}{135}{45}}{RM Welcom to LaTeX} 


by



 pstextpath[c](0,1.5ex){psarcn[linestyle=none](3,0){5cm}{135}{45}}{pscharpath{RM Welcom to LaTeX}}


It produces



enter image description here



Question:



How to its result like first result (of course question 1 has already been solved )?










share|improve this question
























  • I always share useful things to others.
    – God Must Be Crazy
    Dec 21 '18 at 13:20














2












2








2


0





documentclass[pstricks]{article}
usepackage{pst-text,amsmath,pst-eucl,amssymb}
begin{document}
begin{pspicture}[showgrid]

DeclareFixedFont{RM}{T1}{ptm}{b}{n}{30pt}
pstextpath[c](0,1.5ex){psarcn[linestyle=none](3,0){5cm}{135}{45}}
{RM Welcom to LaTeX}

end{pspicture}
end{document}


enter image description here



Question 1: How to show letter "A" of LaTeX clearly?



%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%



When I replace



 pstextpath[c](0,1.5ex){psarcn[linestyle=none](3,0){5cm}{135}{45}}{RM Welcom to LaTeX} 


by



 pstextpath[c](0,1.5ex){psarcn[linestyle=none](3,0){5cm}{135}{45}}{pscharpath{RM Welcom to LaTeX}}


It produces



enter image description here



Question:



How to its result like first result (of course question 1 has already been solved )?










share|improve this question















documentclass[pstricks]{article}
usepackage{pst-text,amsmath,pst-eucl,amssymb}
begin{document}
begin{pspicture}[showgrid]

DeclareFixedFont{RM}{T1}{ptm}{b}{n}{30pt}
pstextpath[c](0,1.5ex){psarcn[linestyle=none](3,0){5cm}{135}{45}}
{RM Welcom to LaTeX}

end{pspicture}
end{document}


enter image description here



Question 1: How to show letter "A" of LaTeX clearly?



%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%



When I replace



 pstextpath[c](0,1.5ex){psarcn[linestyle=none](3,0){5cm}{135}{45}}{RM Welcom to LaTeX} 


by



 pstextpath[c](0,1.5ex){psarcn[linestyle=none](3,0){5cm}{135}{45}}{pscharpath{RM Welcom to LaTeX}}


It produces



enter image description here



Question:



How to its result like first result (of course question 1 has already been solved )?







pstricks pst-text






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 21 '18 at 11:07

























asked Dec 21 '18 at 8:48









chishimotoji

864316




864316












  • I always share useful things to others.
    – God Must Be Crazy
    Dec 21 '18 at 13:20


















  • I always share useful things to others.
    – God Must Be Crazy
    Dec 21 '18 at 13:20
















I always share useful things to others.
– God Must Be Crazy
Dec 21 '18 at 13:20




I always share useful things to others.
– God Must Be Crazy
Dec 21 '18 at 13:20










1 Answer
1






active

oldest

votes


















6





+100









It is a problem with the definition of La. Use:



documentclass[pstricks]{article}
usepackage{pst-text}
DeclareFixedFont{RM}{T1}{ptm}{b}{n}{30pt}
DeclareFixedFont{rm}{T1}{ptm}{b}{n}{20pt}
defLa{Lkern-.23emsetbox0hbox{T}vbox toht0{%
hbox{rm Akern-.23em}vss}}

begin{document}
begin{pspicture}[showgrid](-2,3)(8,6)
pstextpath[c](0,1.5ex){psarcn[linestyle=none](3,0){5cm}{135}{45}}%
{RM Welcome to LaTeX}%
end{pspicture}

begin{pspicture}[showgrid](0,0)(8,2)
pscharpath{RM Welcome to LaTeX}
end{pspicture}

end{document}


enter image description here



With the pst-text.tex from http://archiv.dante.de/~herbert/TeXnik/tex/generic/pst-text/
and the pst-text.pro from http://archiv.dante.de/~herbert/TeXnik/dvips/pst-text/
you can write outlines text on a circle:



begin{pspicture}(10,10)
psCircleText[fontsize=6.5mm,radius=4cm](5,5){All is Fun with the typesetting system TeX}%
psCircleText[fillcolor=blue!40,fontsize=1cm,font=Helvetica](5,5){All is Fun within the World}%
pscircle[linecolor=red](5,5){4cm}pscircle[linecolor=blue](5,5){2cm}
end{pspicture}


enter image description here



All files will be uploaded to CTAN as soon as mpossible.






share|improve this answer























  • Help me with second question.
    – chishimotoji
    Dec 21 '18 at 9:53










  • maybe later today ...
    – Herbert
    Dec 21 '18 at 10:56










  • there is a problem with outline fonts and pstextpath which I cannot fix. Maybe later ...
    – Herbert
    Dec 21 '18 at 17:28










  • Thank you very much. Can it be used with arc?
    – chishimotoji
    Dec 28 '18 at 13:17








  • 1




    usepackage{pst-text} psCircleText[fontsize=6.5mm,radius=4cm](5,5){Welcome to LaTeX} for a pspicture area of (10,10)
    – Herbert
    Dec 28 '18 at 14:06













Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f466822%2fhow-to-fix-it-with-pstextpath-and-pscharpath%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









6





+100









It is a problem with the definition of La. Use:



documentclass[pstricks]{article}
usepackage{pst-text}
DeclareFixedFont{RM}{T1}{ptm}{b}{n}{30pt}
DeclareFixedFont{rm}{T1}{ptm}{b}{n}{20pt}
defLa{Lkern-.23emsetbox0hbox{T}vbox toht0{%
hbox{rm Akern-.23em}vss}}

begin{document}
begin{pspicture}[showgrid](-2,3)(8,6)
pstextpath[c](0,1.5ex){psarcn[linestyle=none](3,0){5cm}{135}{45}}%
{RM Welcome to LaTeX}%
end{pspicture}

begin{pspicture}[showgrid](0,0)(8,2)
pscharpath{RM Welcome to LaTeX}
end{pspicture}

end{document}


enter image description here



With the pst-text.tex from http://archiv.dante.de/~herbert/TeXnik/tex/generic/pst-text/
and the pst-text.pro from http://archiv.dante.de/~herbert/TeXnik/dvips/pst-text/
you can write outlines text on a circle:



begin{pspicture}(10,10)
psCircleText[fontsize=6.5mm,radius=4cm](5,5){All is Fun with the typesetting system TeX}%
psCircleText[fillcolor=blue!40,fontsize=1cm,font=Helvetica](5,5){All is Fun within the World}%
pscircle[linecolor=red](5,5){4cm}pscircle[linecolor=blue](5,5){2cm}
end{pspicture}


enter image description here



All files will be uploaded to CTAN as soon as mpossible.






share|improve this answer























  • Help me with second question.
    – chishimotoji
    Dec 21 '18 at 9:53










  • maybe later today ...
    – Herbert
    Dec 21 '18 at 10:56










  • there is a problem with outline fonts and pstextpath which I cannot fix. Maybe later ...
    – Herbert
    Dec 21 '18 at 17:28










  • Thank you very much. Can it be used with arc?
    – chishimotoji
    Dec 28 '18 at 13:17








  • 1




    usepackage{pst-text} psCircleText[fontsize=6.5mm,radius=4cm](5,5){Welcome to LaTeX} for a pspicture area of (10,10)
    – Herbert
    Dec 28 '18 at 14:06


















6





+100









It is a problem with the definition of La. Use:



documentclass[pstricks]{article}
usepackage{pst-text}
DeclareFixedFont{RM}{T1}{ptm}{b}{n}{30pt}
DeclareFixedFont{rm}{T1}{ptm}{b}{n}{20pt}
defLa{Lkern-.23emsetbox0hbox{T}vbox toht0{%
hbox{rm Akern-.23em}vss}}

begin{document}
begin{pspicture}[showgrid](-2,3)(8,6)
pstextpath[c](0,1.5ex){psarcn[linestyle=none](3,0){5cm}{135}{45}}%
{RM Welcome to LaTeX}%
end{pspicture}

begin{pspicture}[showgrid](0,0)(8,2)
pscharpath{RM Welcome to LaTeX}
end{pspicture}

end{document}


enter image description here



With the pst-text.tex from http://archiv.dante.de/~herbert/TeXnik/tex/generic/pst-text/
and the pst-text.pro from http://archiv.dante.de/~herbert/TeXnik/dvips/pst-text/
you can write outlines text on a circle:



begin{pspicture}(10,10)
psCircleText[fontsize=6.5mm,radius=4cm](5,5){All is Fun with the typesetting system TeX}%
psCircleText[fillcolor=blue!40,fontsize=1cm,font=Helvetica](5,5){All is Fun within the World}%
pscircle[linecolor=red](5,5){4cm}pscircle[linecolor=blue](5,5){2cm}
end{pspicture}


enter image description here



All files will be uploaded to CTAN as soon as mpossible.






share|improve this answer























  • Help me with second question.
    – chishimotoji
    Dec 21 '18 at 9:53










  • maybe later today ...
    – Herbert
    Dec 21 '18 at 10:56










  • there is a problem with outline fonts and pstextpath which I cannot fix. Maybe later ...
    – Herbert
    Dec 21 '18 at 17:28










  • Thank you very much. Can it be used with arc?
    – chishimotoji
    Dec 28 '18 at 13:17








  • 1




    usepackage{pst-text} psCircleText[fontsize=6.5mm,radius=4cm](5,5){Welcome to LaTeX} for a pspicture area of (10,10)
    – Herbert
    Dec 28 '18 at 14:06
















6





+100







6





+100



6




+100




It is a problem with the definition of La. Use:



documentclass[pstricks]{article}
usepackage{pst-text}
DeclareFixedFont{RM}{T1}{ptm}{b}{n}{30pt}
DeclareFixedFont{rm}{T1}{ptm}{b}{n}{20pt}
defLa{Lkern-.23emsetbox0hbox{T}vbox toht0{%
hbox{rm Akern-.23em}vss}}

begin{document}
begin{pspicture}[showgrid](-2,3)(8,6)
pstextpath[c](0,1.5ex){psarcn[linestyle=none](3,0){5cm}{135}{45}}%
{RM Welcome to LaTeX}%
end{pspicture}

begin{pspicture}[showgrid](0,0)(8,2)
pscharpath{RM Welcome to LaTeX}
end{pspicture}

end{document}


enter image description here



With the pst-text.tex from http://archiv.dante.de/~herbert/TeXnik/tex/generic/pst-text/
and the pst-text.pro from http://archiv.dante.de/~herbert/TeXnik/dvips/pst-text/
you can write outlines text on a circle:



begin{pspicture}(10,10)
psCircleText[fontsize=6.5mm,radius=4cm](5,5){All is Fun with the typesetting system TeX}%
psCircleText[fillcolor=blue!40,fontsize=1cm,font=Helvetica](5,5){All is Fun within the World}%
pscircle[linecolor=red](5,5){4cm}pscircle[linecolor=blue](5,5){2cm}
end{pspicture}


enter image description here



All files will be uploaded to CTAN as soon as mpossible.






share|improve this answer














It is a problem with the definition of La. Use:



documentclass[pstricks]{article}
usepackage{pst-text}
DeclareFixedFont{RM}{T1}{ptm}{b}{n}{30pt}
DeclareFixedFont{rm}{T1}{ptm}{b}{n}{20pt}
defLa{Lkern-.23emsetbox0hbox{T}vbox toht0{%
hbox{rm Akern-.23em}vss}}

begin{document}
begin{pspicture}[showgrid](-2,3)(8,6)
pstextpath[c](0,1.5ex){psarcn[linestyle=none](3,0){5cm}{135}{45}}%
{RM Welcome to LaTeX}%
end{pspicture}

begin{pspicture}[showgrid](0,0)(8,2)
pscharpath{RM Welcome to LaTeX}
end{pspicture}

end{document}


enter image description here



With the pst-text.tex from http://archiv.dante.de/~herbert/TeXnik/tex/generic/pst-text/
and the pst-text.pro from http://archiv.dante.de/~herbert/TeXnik/dvips/pst-text/
you can write outlines text on a circle:



begin{pspicture}(10,10)
psCircleText[fontsize=6.5mm,radius=4cm](5,5){All is Fun with the typesetting system TeX}%
psCircleText[fillcolor=blue!40,fontsize=1cm,font=Helvetica](5,5){All is Fun within the World}%
pscircle[linecolor=red](5,5){4cm}pscircle[linecolor=blue](5,5){2cm}
end{pspicture}


enter image description here



All files will be uploaded to CTAN as soon as mpossible.







share|improve this answer














share|improve this answer



share|improve this answer








edited Dec 28 '18 at 14:01

























answered Dec 21 '18 at 9:48









Herbert

270k24408717




270k24408717












  • Help me with second question.
    – chishimotoji
    Dec 21 '18 at 9:53










  • maybe later today ...
    – Herbert
    Dec 21 '18 at 10:56










  • there is a problem with outline fonts and pstextpath which I cannot fix. Maybe later ...
    – Herbert
    Dec 21 '18 at 17:28










  • Thank you very much. Can it be used with arc?
    – chishimotoji
    Dec 28 '18 at 13:17








  • 1




    usepackage{pst-text} psCircleText[fontsize=6.5mm,radius=4cm](5,5){Welcome to LaTeX} for a pspicture area of (10,10)
    – Herbert
    Dec 28 '18 at 14:06




















  • Help me with second question.
    – chishimotoji
    Dec 21 '18 at 9:53










  • maybe later today ...
    – Herbert
    Dec 21 '18 at 10:56










  • there is a problem with outline fonts and pstextpath which I cannot fix. Maybe later ...
    – Herbert
    Dec 21 '18 at 17:28










  • Thank you very much. Can it be used with arc?
    – chishimotoji
    Dec 28 '18 at 13:17








  • 1




    usepackage{pst-text} psCircleText[fontsize=6.5mm,radius=4cm](5,5){Welcome to LaTeX} for a pspicture area of (10,10)
    – Herbert
    Dec 28 '18 at 14:06


















Help me with second question.
– chishimotoji
Dec 21 '18 at 9:53




Help me with second question.
– chishimotoji
Dec 21 '18 at 9:53












maybe later today ...
– Herbert
Dec 21 '18 at 10:56




maybe later today ...
– Herbert
Dec 21 '18 at 10:56












there is a problem with outline fonts and pstextpath which I cannot fix. Maybe later ...
– Herbert
Dec 21 '18 at 17:28




there is a problem with outline fonts and pstextpath which I cannot fix. Maybe later ...
– Herbert
Dec 21 '18 at 17:28












Thank you very much. Can it be used with arc?
– chishimotoji
Dec 28 '18 at 13:17






Thank you very much. Can it be used with arc?
– chishimotoji
Dec 28 '18 at 13:17






1




1




usepackage{pst-text} psCircleText[fontsize=6.5mm,radius=4cm](5,5){Welcome to LaTeX} for a pspicture area of (10,10)
– Herbert
Dec 28 '18 at 14:06






usepackage{pst-text} psCircleText[fontsize=6.5mm,radius=4cm](5,5){Welcome to LaTeX} for a pspicture area of (10,10)
– Herbert
Dec 28 '18 at 14:06




















draft saved

draft discarded




















































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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f466822%2fhow-to-fix-it-with-pstextpath-and-pscharpath%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

ComboBox Display Member on multiple fields

Is it possible to collect Nectar points via Trainline?