The metapost tag has no wiki summary.
0
votes
0answers
4 views
Strings in mpost for loop
I'm trying to do the following:
xN := 200;
topp:= 3;
bott := -3;
spac := 20;
% draw number line
draw (0,0)--(xN,0);
last := 3;
% draw 4 tick marks from left side
for i := 0 upto last:
draw ...
1
vote
0answers
8 views
METAPOST: using loop variables in labels
Dear stackoverflowers,
recently, while playing around with the METAPOST enviroment, I encountered a problem. While drawing something using the loop 'for' macro I needed the value of the loop variable ...
1
vote
0answers
50 views
Metapost Equations
I was given a homework assignment in one of my courses that asked us to google the Metapost language and find the use for the equation solving feature in the language.
After going through the first ...
2
votes
1answer
226 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 ...
3
votes
1answer
128 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
253 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
135 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.
3
votes
2answers
757 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, ...