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

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

你可能感兴趣的文章
APP测试常见点
查看>>
JavaScript+HTML5 实现打地鼠小游戏
查看>>
转一下递归
查看>>
浅谈利用同步机制解决Java中的线程安全问题
查看>>
第三章 列表简介
查看>>
四则运算设计思路
查看>>
每间隔15分钟生成一个时间戳
查看>>
【学习】python(os)模块总结
查看>>
JAVA毕业后工资有多少?
查看>>
android,HttpPost 提交数据
查看>>
自定义简单IOC类
查看>>
js中如何高效、简洁、清晰地定义变量
查看>>
不知从何下手之桌面设置成D(E、F)盘后D(E、F)盘所有文件跑桌面去了 how to solve?...
查看>>
OEA体验:常用功能3 多对多关系
查看>>
【尺取】POJ 3320
查看>>
最新 macOS Sierra 10.12.3 安装CocoaPods及使用详解<转>
查看>>
2016-9-18
查看>>
python学习笔记(一):基本概念
查看>>
数学 - 线性代数导论 - #11 基于矩阵A生成的空间:列空间、行空间、零空间、左零空间...
查看>>
web开发一些资源的在线引用地址
查看>>