如何使用 \pstextpath 和 \pscharpath 修复它?

如何使用 \pstextpath 和 \pscharpath 修复它?
\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}

在此处输入图片描述

问题一:如何清晰显示LaTeX的字母“A”?

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

当我更换

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

经过

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

它产生

在此处输入图片描述

问题:

其结果如何像第一个结果一样(当然问题1已经解决了)?

答案1

这是 的定义问题\La。使用:

\documentclass[pstricks]{article}
\usepackage{pst-text}   
\DeclareFixedFont{\RM}{T1}{ptm}{b}{n}{30pt}
\DeclareFixedFont{\rm}{T1}{ptm}{b}{n}{20pt}   
\def\La{L\kern-.23em\setbox0\hbox{T}\vbox to\ht0{%
    \hbox{\rm A\kern-.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 \La\TeX}%
\end{pspicture}

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

\end{document}

在此处输入图片描述

随着pst-text.texhttp://archiv.dante.de/~herbert/TeXnik/tex/generic/pst-text/ 以及pst-text.pro来自http://archiv.dante.de/~herbert/TeXnik/dvips/pst-text/ 您可以在圆圈上写轮廓文字:

\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}

在此处输入图片描述

所有文件将尽快上传至 CTAN。

相关内容