|
- %% Keep track of the current PPTX presentation
- persistent PPTXInfo
- %% Constants
- % - EMUs (English Metric Units) are defined as 1/360,000 of a centimeter
- % and thus there are 914,400 EMUs per inch, and 12,700 EMUs per point
- PPTXInfo.CONST.IN_TO_EMU = 914400;
- PPTXInfo.CONST.PT_TO_EMU = 12700;
- PPTXInfo.CONST.DEG_TO_EMU = 60000;
- PPTXInfo.CONST.FONT_PX_TO_PPTX = 100;
- PPTXInfo.CONST.DEFAULT_DIMENSIONS = [10 7.5]; % in inches
- %% Initialize PPTXInfo (if it's not initialized yet)
- if ~isfield(PPTXInfo,'fileOpen'),
- PPTXInfo.fileOpen = false;
- end
复制代码
|
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
|