5

我有两个 metapost 文件:

% test1.mp
beginfig(1):

% foobar code

% code specific to test1

endfig;
end;

% test2.mp
beginfig(1):

% foobar code    

% code specific to test2

endfig;
end;

作为程序员,我自然讨厌重复。有没有办法将“foobar 代码”移动到 foobar.mp 文件中,然后将此文件包含在 test1.mp 和 test2.mp 中?例如...

% test1.mp
beginfig(1):

% for illustration...
Include.foobar("foobar.mp");

% code specific to test2

endfig;
end;
4

1 回答 1

4
% test1.mp
beginfig(1):
input foobar
endfig;
end;
于 2011-02-25T21:37:21.903 回答