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

本文共 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/4336584.html

你可能感兴趣的文章
一个成功的响应式网站该怎么策划
查看>>
React16新特性
查看>>
Lua脚本学习笔记
查看>>
创建共享文件夹的方式有哪些?
查看>>
Docker Compose搭建mycat读写分离
查看>>
Confluence 6 设置 Oracle 数据库准备
查看>>
xshell优化与远程控制服务器
查看>>
coreData初步认识
查看>>
NFS应用场景及环境搭建
查看>>
git subtree的使用体验
查看>>
Python培训班好不好?
查看>>
hadoop的eclipse安装
查看>>
linux文件系统与文件管理(一)
查看>>
滴滴谋变:国内“关停并转”非主业,国外加码外卖等业务
查看>>
如何把pdf文件转换为excel表格
查看>>
IT紧随业务频动,质量管理如何御风而行?
查看>>
APP注册发送验证码
查看>>
黑马程序员——关于多态
查看>>
关于outlook的配置
查看>>
RHEL6.2挂载ntfs文件系统
查看>>