g******s 发帖数: 141 | 1 I can view view the figure using yap. However, a message is generated "The
document cannot be rendered properly because the current render method does
not support PostScript Specials. Temporarily switch to the Dvips render
method".
When I try to generate a pdf file, the message is "unknown graphics
extension: .eps".
Who knows the problem? Thanks a lot. |
|
k**f 发帖数: 372 | 2 我用MATLAB和LaTeX是有些年头了。我建议你下载这个文档,有空读读。我当年就是跟
着它学的,应该说这些年来相当顺利。
ftp://ftp.tex.ac.uk/tex-archive/info/epslatex.pdf
几年没盯着,现在这个版本居然已经长到了124页!不过里面确实是好料。
另外你是在MALTLAB生成的EPS文件里加上了tiff预览。不知你用的是什么平台。以前在
Windows中加此预览似乎有意义,因为EPS文件导入到Office中只能显示tiff预览,否则
就只能显示一个框框。但至少从Office 2003开始,即使没有tiff预览,导入的EPS文件
也会自动生成一个低分辨率的预览。当用Postscript打印机打印时,还是会打印高分辨
率的图形。所以我不觉得还有必要加tiff预览。如果你用的是其他平台(Mac, Unix),
事情就另当别论了。
周末愉快。 |
|
k**f 发帖数: 372 | 3 One way is to install a postscript printer drive, and print your jpg file
into an eps file. You need to select the eps option in the drive.
My preference is to use a standalone program such as jpeg2ps to do a direct
conversion. More information can be found here:
http://www.ctan.org/tex-archive/support/jpeg2ps/
Another application is ImageMagick, found at www.ImageMagick.org .
Good luck. |
|
c*******h 发帖数: 1096 | 4 that is just the rendering problem of your postscript viewer
enclosing |
|
S**I 发帖数: 15689 | 5 dvipdf不能处理某些postscript代码 |
|
q**j 发帖数: 10612 | 6 是纯粹的文字,没有图片。我在网上search了,发现有人说latex 的default font不是
turetype。所以必须dvi to postscript to pdf才好。我还没有试过。 |
|
y****e 发帖数: 1012 | 7 我想同时画bar和line,请问能在同一个图里面输出吗?
这样行不行呢?
set term postscript eps color blacktext "Helvetica" 24
set output '600030macd.eps'
set autoscale # scale axes automatically
unset log # remove any log-scaling
unset label # remove any previous labels
set xtic auto # set xtics automatically
set ytic auto # set ytics automatically
set title "MACD Chart"
set xlabel "date"
set ylabel "s |
|
D****r 发帖数: 309 | 8 set term postscript eps color blacktext "Helvetica" 24
set output '600030macd.eps'
set autoscale # scale axes automatically
unset log # remove any log-scaling
unset label # remove any previous labels
set xtic auto # set xtics automatically
set ytic auto # set ytics automatically
set title "MACD Chart"
set xlabel "date"
set ylabel "score"
#set key 0.01,100
set xrange [0 |
|
e*******s 发帖数: 1927 | 9 新手
环境:Windows XP+MikTex+TeXnicCenter
package used:
graphicx
用的方法是在版上搜的,ppt里画的图,存成jpg图,然后用hp postscript打印成eps文
件,然后用GSview PS->eps功能,自定义bounding box(就是在图的上下左右各点一下
),然后插入tex文件里。
如果用LaTeX=>DVI,可以正常显示图片。
但是如果用LaTeX=>PDF,会报错说Unknown graphics extension: .eps.
这种情况是怎么回事呢?请大家指点一下。 |
|
r*****z 发帖数: 906 | 10 这些基于postscript的技术,都在逐渐淘汰之列
相对的,pgf这样基于pdf的才是目前TeX社区的主流 |
|
y****e 发帖数: 1012 | 11 set term postscript eps color blacktext "Helvetica" 24
set output 'p1.eps'
set autoscale # scale axes automaticallyun
set label # remove any previous labels
set xtic auto # set xtics automatically
set ytic auto # set ytics automatically
set title "I/O Traffic"
set xlabel "Interval(5s)"
set ylabel "Data(KB)"
set key 0.01,10000
set xr [0:100]
set yr [0:10000]
plot "p1.tmp" using 1:2 title 'r0' ... 阅读全帖 |
|
r*****z 发帖数: 906 | 12 我用的是gnuplot 4.4,所以需要对你的命令做一点儿修改。
修改后的如下:
set term postscript eps color blacktext "Helvetica" 24
set output 'p1.eps'
set autoscale # scale axes automaticallyun
unset log
unset label
set xtic auto # set xtics automatically
set ytic auto # set ytics automatically
set title "I/O Traffic"
set xlabel "Interval(5s)"
set ylabel "Data(KB)"
set key at 1,100
set xr [0:100]
set yr [0:10000]
plot "p1.tmp" using 1:2 title 'r0' with li... 阅读全帖 |
|
o**n 发帖数: 31 | 13 1.I am using debian and it is in package: "psutils"
2.I think it can deal with document with arbitrary pages |
|
r********s 发帖数: 179 | 14 hi,buddy,
U can do it in ghostscript(ghostview is its GUI) for windows.
Use "convert" option in File menu.
search it in ftp.gnu.org |
|
g****d 发帖数: 3461 | 15
If your printer supports level 2 postscript,
add this line to the generated ps file
right before the PS definitions start(you
can add it right after the EPS boundingbox
defination.:
<< /Duplex true /Tumble false >> setpagedevice
/Tumble false flipps the page along the longer
side(portrait layout), /Tumble true flipps the
page along the shorter side(landscape layout). |
|
dy 发帖数: 12 | 16 Can you use
groff -Tps -man xxx.x >xxx.ps
to get a Postscript file?
The xxx.x is the man file name, for example /usr/man/man1/man.1 or so. |
|
L***e 发帖数: 42 | 17 System: new solaris 8.
Printer: HP postscript 6MP
Question: how to set up printer in Unix?
no /etc/printcap file exists.
Thanks.
. |
|
s****e 发帖数: 68 | 18 i dl some paper from online with *.ps.gz format.
i thought they are compressed files and tried to use
gzip or gnuzip to decompress but always comes out like
" they are not in gzip format"
then later i found they are simply postscript files or
some "compressed ps files" and can be viewed directly
by ghostview.
anyone knows why or what is it? thanks. |
|
i**********r 发帖数: 36 | 19 【 以下文字转载自 Linux 讨论区 】
【 原文由 interstellar 所发表 】
i have a sequence of postscript files and want to slide show them with
a 0.5 second pause between files. i tried animate, which is too slow;
i also tried gs, which is very fast, but no pause can be set between
two files. are there any other programs in linux to do this? |
|
s*****t 发帖数: 1994 | 20 At least dvips should work, check your path. |
|
|
l*l 发帖数: 225 | 22 "<<" only using in a script as a "Note" for input.
Like, if you using gnuplot to plot a pic, you usually in interact method,
but sometime you want save time or for a batch process,
you can use that:
sample.sh
#!/bin/sh
gnuplot << _EOF_ ### Note, input start here.
set xlable
set ylable
set zlable
set output '/lul/physics/DEC/pythia/work/plot/new.ps'
set terminal postscript landscape noenhanced monochrome dashed "Helvetica" 14
set size 1,1
set title ''
set key right top Right noreverse samplen |
|
c********y 发帖数: 11 | 23 yes, it's possible. but I don't know how to do it sepcifically |
|
|
D****g 发帖数: 2860 | 25 我现在有一个format成A4的ps,我想在letter paper上打印,头上有一行印不出来,
有什么办法把所有页按比例缩小一点吗?谢谢 |
|
c******n 发帖数: 4965 | 26 check dvips options, I remember there's a paper size option |
|
c******n 发帖数: 4965 | 27 yepp, it's -t Your_paper_size
you can specify letter |
|
|
D****g 发帖数: 2860 | 29 No, I don't have dvi, what I have is only the ps file. |
|
d*******t 发帖数: 36 | 30 My printer server running cups system on a linux computer. in the client side,
Solaris 9 and lpd are used and the following command are used to add the
printer:
lpadmin -p hp5a -s cupsserver
lpadmin -p hp5a -T PS -I postscript,simple
lpadmin -p hp5a -D "HP Laser Jet 5M"
lpadmin -d hp5a
/usr/sbin/lpshut
/etc/init.d/lp stop
/etc/init.d/lp start
However, the command lpq give me following information:
could not talk to print service at cupsserver
What's the problem? Please help me. Thanks very much. |
|
s*****l 发帖数: 2041 | 31 直接双击postscript文件,缺省的是用image editor大开,
我想改成用ghostview去打开,怎么折腾? |
|
t*********g 发帖数: 6 | 32 我的机器的操作系统是solaris8,当我用lp打文件时,出现以下错误:
encounter an error duing filtering
Filtering stopped with an exitcode fo 1
Reason for filure
/usr/lib/lp/postscript/jpostprint: con't iconv_open
但当我用acroread时,可以打文件。请问这是什么问题 |
|
D****g 发帖数: 2860 | 33 If you were using "seminar" package, it's just a snap. But I guess you are not.
You can generate postscript and use "psnup" to generate handouts. |
|
l********r 发帖数: 187 | 34 I want to put plot figure into a ps file. For example script is as follows:
gset term postscript color
gset output 'temp.ps'
I=[1:1:30];
J=[1:0.5:30];
plot(I, 'r', J, 'b');
The result file "temp.ps" will contain two pages. How can i make it contain
only one page. Thanks. |
|
D****g 发帖数: 2860 | 35 it comes with windows. just choose a postscript printer (most printers are,
e.g. something like HP laser jet 6). configure the port as FILE instead of
LPT1. |
|
D****g 发帖数: 2860 | 36 Install a postscript ptiner, choose FILE (instead of LPT1) as the port. |
|
s**********i 发帖数: 711 | 37
more accurately, install driver for a postscript printer.
no need to get actual printer...
also can check "print to file" when you print in printer setup. |
|
D****g 发帖数: 2860 | 38 pstricks package. the only drawback to me is that it produces postscript
and does not work with pdflatex, which I use on my Mac. |
|
d**m 发帖数: 72 | 39
Try print to a prn file with a Postscript Printer Driver(any brand),
then use ps2pdf (rename prn to ps file) |
|
e*******s 发帖数: 1363 | 40 那个恢复管理员密码的,除了2,3有可能之外,其它都是在胡扯
Windows
DOS/
要
PostScript
格式
创建
FastPlayer
Config
XP
com
MBR
板/
为1
QoS
msc
件。
regedit
Disable
PanelDesktop
板/
nohome
MACHINESOFTWAREMicrosoftWindowsCurrentVersionexplorerAdvancedFolderHiddenSHO
LOCAL_
MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerMyComputerNameSpaceDele
60
-m
xx
DOS
/
/
Notepad
notepad
(
EXE
XP
Internet
V6
作。
To]
To] |
|
r***i 发帖数: 112 | 41 我想把内有中文的ps文件转成PDF文件.我有Acrobat Distiller 5.0.
似乎不是件容易的事.怎样安装CID Fonts?
哪位有经验的,能不能谈谈.不胜感激. |
|
y*****i 发帖数: 24 | 42 装个gsview吧,它可以直接把ps转换成pdf。
或者用gsview配合pdfcreator。 |
|
x********a 发帖数: 57 | 43 前几天,格式化了硬盘,重装windows 7 及软件,有两个问题
1。realplayer 不能播放文件名有中文的文件,以前是可以的
2。装了一个繁体篆书字库,office 2007, acrobat 9.0 pro,结果不能生成pdf 文件。
提示
%%[ ProductName: Distiller ]%%
%%[ Error: undefinedresource; OffendingCommand: findresource ]%%
Stack:
/CIDFont
/FZuanSu
{5 {--pop--} --repeat-- 0 -1 409 2048 --div-- 1638 2048 --div--}
/FZuanSuCID
%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%
%%[ Warning: PostScript error. No PDF file produced. ] %%
同样的软件, 同样的word 文件在格式化之前是没有问题的。在word,acrobat 里,显
示以前同样的文... 阅读全帖 |
|
a*w 发帖数: 4495 | 44 打印机名字带有PS或PostScript的就是。 |
|
g*****e 发帖数: 16 | 45 Let's talk in a non-tech view.
Well, assemble lang can do everything.
XML may not as good as assemble.
It's just a "potential" standard. If it is a standard someday,
it's good otherwise it's worth or worthless as postscript, edi, pdf,
html....
So it's only a bet. You take it or not.
Java is the same thing. You take it or not?
Well, i'll bet on BOTH. The only reason is I already got
C, C++, Assembe,.... Let's pack these easy stuff into our
toolbox and boost our money bah. Otherwise why a highscho |
|
C*******e 发帖数: 4348 | 46 在ClustalX里alignment做完以后,File->Write Alignment as Postscript,在弹出的
窗口里
应该会问你每一行多少个bp/aa,纸张大小(A4还是letter),横排竖排之类的问题,
改好以后就会
生成一个postcript文件,用adobe professional(如果没有的话可以用免费软件Cute
PDF)是可
以打开并且生成一个pdf文件的,pdf文件生成以后就不需要以前那个postcript文件了。
. |
|
|
a*********n 发帖数: 2526 | 48 这是journal 的 要求 "In particular, we require you to send the main figures
in an industrial format - TIFF, EPS or postscript (ps) files in PC or
Macintosh format, preferably from PowerPoint, Illustrator or Photoshop
software. Please ensure that all figures are unflattened and fully editable.
Importantly, each element should be on a separate layer. "
求高人指点 |
|
g***i 发帖数: 90 | 49 http://www-2.cs.cmu.edu/~dst/LispBook/index.html
Common Lisp: A Gentle Introduction to Symbolic Computation
David S. Touretzky
This book may be distributed in hardcopy form, for non-profit
educational purposes, provided that no fee is charged to the recipient
beyond photocopying costs. All other rights reserved. You may not
redistribute the Postscript file, e.g., you may not put a copy on another
web page, or include it on a CD-RO |
|
C***S 发帖数: 175 | 50 Have you read the help file for print function.
e.g. print(-dill,'mytest' ) print to Adobe Illustrator file
print(-dps, 'mytest') print to PostScript file
but, maybe you mead a hybrid of text and figure? that is kind of diffcult. |
|