O*****y 发帖数: 222 | 1 在 ubuntu 下用 metapost 编译下面的 code,结果编译通过,但是生成的 ps file 打
开用兵没有 A 那个点,用 label.bot("A",(0,-1cm)) 结果也是一样,不知是怎么回事
?哪位老兄如果机器上有 metapost 能不能给试一下下面的 code,多谢!
beginfig(1);
draw fullcircle scaled 2cm;
dotlabel.bot("A",(0,-1cm));
endfig;
end; | t***s 发帖数: 4666 | 2 what do you mean the label not displayed?
the metapost generated ps file is on complete. you need to include it in
the tex file to see the final result.
【在 O*****y 的大作中提到】 : 在 ubuntu 下用 metapost 编译下面的 code,结果编译通过,但是生成的 ps file 打 : 开用兵没有 A 那个点,用 label.bot("A",(0,-1cm)) 结果也是一样,不知是怎么回事 : ?哪位老兄如果机器上有 metapost 能不能给试一下下面的 code,多谢! : beginfig(1); : draw fullcircle scaled 2cm; : dotlabel.bot("A",(0,-1cm)); : endfig; : end;
| O*****y 发帖数: 222 | 3 I use evince to open the ps file generated by metapost, and I can not see
the label, which is the "A" this my example. I also tried using pstopdf to
convert the ps file to pdf and I got error.
Yeah, maybe I need to try include the ps file in latex and see the result.
Thanks.
【在 t***s 的大作中提到】 : what do you mean the label not displayed? : the metapost generated ps file is on complete. you need to include it in : the tex file to see the final result.
| t***s 发帖数: 4666 | 4 the output of the metapost should be named as *.mps. it's not a standalone
ps file. you can use mps2ps to convert to a .ps file, or include it
in a latex file and see the output.
【在 O*****y 的大作中提到】 : I use evince to open the ps file generated by metapost, and I can not see : the label, which is the "A" this my example. I also tried using pstopdf to : convert the ps file to pdf and I got error. : Yeah, maybe I need to try include the ps file in latex and see the result. : Thanks.
| a**e 发帖数: 5794 | 5 字体的原因,试试
mpost \prologues:=2; input file.mp
【在 O*****y 的大作中提到】 : 在 ubuntu 下用 metapost 编译下面的 code,结果编译通过,但是生成的 ps file 打 : 开用兵没有 A 那个点,用 label.bot("A",(0,-1cm)) 结果也是一样,不知是怎么回事 : ?哪位老兄如果机器上有 metapost 能不能给试一下下面的 code,多谢! : beginfig(1); : draw fullcircle scaled 2cm; : dotlabel.bot("A",(0,-1cm)); : endfig; : end;
| s****l 发帖数: 78 | 6 metapost 生成的eps文件没有设定字体,
用 mps2eps 转一下就可以了
http://www.ida.liu.se/~joned/download/mps2eps/
【在 O*****y 的大作中提到】 : 在 ubuntu 下用 metapost 编译下面的 code,结果编译通过,但是生成的 ps file 打 : 开用兵没有 A 那个点,用 label.bot("A",(0,-1cm)) 结果也是一样,不知是怎么回事 : ?哪位老兄如果机器上有 metapost 能不能给试一下下面的 code,多谢! : beginfig(1); : draw fullcircle scaled 2cm; : dotlabel.bot("A",(0,-1cm)); : endfig; : end;
|
|