Tagged Questions
The metapost tag has no wiki summary.
3
votes
1answer
73 views
Is it possible to include one MetaPost file into another?
I have two metapost files:
% test1.mp
beginfig(1):
% foobar code
% code specific to test1
endfig;
end;
% test2.mp
beginfig(1):
% foobar code
% code specific to test2
endfig;
end;
As a ...
3
votes
1answer
149 views
Should I buy a book on both LaTeX and MetaPost, or just MetaPost?
I feel that the LaTeX syntax is quite easy to use. However, I'm starting to include diagrams in my document. I've discovered the exciting world of MetaPost! The thing is, the MetaPost syntax looks a ...
3
votes
1answer
99 views
How to generate a polygon number figure using metapost?
I'm learning metapost and i want to know how to generate a figure like a polygon number http://en.wikipedia.org/wiki/Polygonal_number , i got triangular numbers but not hexagonal.
Thanks for help.
2
votes
0answers
82 views
Asymptote: resizing the picture (including pen widths and font sizes)
I have created a picture in Asymptote. Now I want to resize it, so that the resulting image is bigger. The problem is that if I call size() or unitsize(), the sizes of TeX labels and line widths ...
2
votes
2answers
622 views
How to view output .mp files from Functional MetaPost
I'm interested in using Functional MetaPost on Mac OS X:
http://cryp.to/funcmp/
I'm looking for a tutorial like:
http://haskell.org/haskellwiki/Haskell_in_5_steps
but for a trivial FuncMP example, ...
0
votes
0answers
52 views
Metapost: get path for a font glyph
I wrote a function to apply a nonlinear transformation to a path, and it works really well. But I would like to transform text as well; not only aligning it to the transformed path but actually ...