博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Latex
阅读量:6716 次
发布时间:2019-06-25

本文共 3242 字,大约阅读时间需要 10 分钟。

1. Latex trick (using latex to generate eps figure): 2. pdfcrop to produce separated pdf without border, pdf2ps to produce eps 3. IEEEPDF express Font problem: 1. pdftops name.pdf name.ps; 2. ps2pdf14
-dCompatibilityLevel#1.4 -dPDFSETTINGS#/prepress name.ps name.pdf 4. Matlab figure without border: 1)generate eps file: print('-depsc2','-tiff','-r300','figure.eps');2) produce pdf: ps2pdf 'figure.eps' 'figure.pdf'; 3)delete border: pdfcrop 'figure.pdf','figureNoBorder.pdf'; ----------------------------------------------------------------------------------------------------------------- function printpdf(h,outfilename) set(h, 'PaperSize', [6.25 7.5]); set(h, 'PaperPositionMode', 'manual'); set(h, 'PaperPosition', [0 0 6.25 7.5]); set(h, 'PaperUnits', 'inches'); set(h, 'PaperSize', [6.25 7.5]); set(h, 'PaperPositionMode', 'manual'); set(h, 'PaperPosition', [0 0 6.25 7.5]); set(h, 'renderer', 'painters'); % print(h, '-dpdf', 'outfilename.pdf'); % print(h, '-dpng', 'my-figure.png'); % print(h, '-depsc2', 'my-figure.eps'); % print(h, '-dpdf', [outfilename '.pdf']); % print(h, '-dpng', [outfilename '.png']); print(h, '-depsc2',[outfilename '.eps']); mycmd=['ps2pdf ' outfilename '.eps ' outfilename '.pdf']; system(mycmd); mycmd=['pdfcrop ' outfilename '.pdf']; system(mycmd); % !pdfcrop [outfilename '.pdf'] [outfilename '-crop.pdf']; ------------------------------------------------------------------------------------------------------------------------ function HandleFigure=JQi_Set_Property_Without_Border(ImageSize) % set properties to save image without border %f=figure('visible','off'); f=figure; subplot('position',[0 0 1 1]); IS=ImageSize; H=IS(1);W=IS(2); rectangle('position',[100 100 10 10]); dpi=100; set(f,'paperposition',[0 0 W/dpi H/dpi]); set(f,'papersize',[W/dpi H/dpi]); HandleFigure=f; ------------------------------------------------------------------------------------------------------------------- 5. latex add in for powerpoint  6. Latex vector graphics language Asymptote (2D,3D, movie):   7. supplementary: 

Adding supplementary tables and figures in LaTeX

A problem I encountered now, when revising a paper and adding a supplement per the editor’s request. How do I number my tables and figures as Table S1, S2 etc.? A solution was in Stackexchange, but the syntax was not good for my version of LaTeX, and I don’t like \makeatletter (here’s ). Here is a working solution to supplementary figure and table numbering. Place this bit in your document preamble:
\newcommand{\beginsupplement}{%        \setcounter{table}{0}        \renewcommand{\thetable}{S\arabic{table}}%        \setcounter{figure}{0}        \renewcommand{\thefigure}{S\arabic{figure}}%     }
Then, when your supplement starts, just add the line:
\beginsupplement
Voila!  Instant “Table S1″ and “Figure S1″. Enjoy.
8. texlive2014 install on Ubuntu 14.04 9. generate list of figure caption (without figures) and table caption with table at the end of paper:  10. use "figcaps" to put figure and table at the end of document. To remove figure from the list, you have to put "\label" in "\caption" and the figure reference can work fine. (weird) ( )

转载于:https://www.cnblogs.com/stoneresearch/archive/2013/01/02/4336702.html

你可能感兴趣的文章
洛谷P1435 回文字串(dp)
查看>>
php 会话控制(关于session的维护与生命周期)
查看>>
tomcat PermGen space
查看>>
高阶函数:声明、实现(定义)与调用
查看>>
splash 安装
查看>>
mysql数据库优化课程---15、mysql优化步骤
查看>>
数据库路由中间件MyCat - 使用篇(4)
查看>>
Java程序开发中的简单内存分析
查看>>
Java中的Future相关
查看>>
CGAL Catmull-Clark Subdivide Surface
查看>>
赛车入门 -- 专有技术名词
查看>>
接收IWebBrowser2的自动化事件
查看>>
需求入门: 需求工程=需求开发+需求管理
查看>>
androidmanifest.xml权限中文说明
查看>>
matlab练习程序(感知哈希对比图片)
查看>>
多媒体指令(图像灰度化)
查看>>
sqlserver数据库大型应用解决方案总结
查看>>
枚举系统设备
查看>>
C#形参,实参,值传递参数,引用传递参数,输出参数,参数数组的学习
查看>>
在Salesforce中创建Approval Process
查看>>