Search found 9 matches

by yateleybob
Mon Oct 15, 2007 5:16 pm
Forum: General
Topic: Best way to deal with screenshots?
Replies: 5
Views: 9809

Re: Best way to deal with screenshots?

If the screenshot is a bitmap (usual on MSWin) then use convert from the ImageMagick tools to convert to EPS (uses ghostscript). Either scale at that point or, better,

\usepackage[dvips]{graphicx}

...
\includegrahics[scale=0.3]{screenshot.eps}

or whatever scale you like.
by yateleybob
Sun Oct 07, 2007 6:13 pm
Forum: Document Classes
Topic: TeXnicCenter using PSTricks package
Replies: 18
Views: 19209

Re: TeXnicCenter using PSTricks package

Have now RTFM which I should have done to begin with; I now understand the error message that I was getting. The pdftricks package is a hack, an elegant hack, but still a hack. Maybe if I enable shell escapes I'll be able to compile a simple test.

Perhaps the MikTeX build has shell escapes enabled ...
by yateleybob
Sun Oct 07, 2007 9:20 am
Forum: Decision Guidance
Topic: Highly configurable LaTeX editors
Replies: 7
Views: 15723

Re: Highly configurable LaTeX editors

The DVI standard does not require pictures to be in any particular format as all such are handled by DVI drivers through \special.

Some old (broken?) dvi previewers can only handle some formats; modern ones can handle most that were mentioned.
by yateleybob
Sun Oct 07, 2007 9:12 am
Forum: Development
Topic: The future of TeXnicCenter
Replies: 24
Views: 85071

Re: The future of TeXnicCenter

One further possibility is to test in wxPython and freeze in wxWidgets if you decide that you really need the speed (you probably won't).

If the GUI and model are kept properly separate, then the issue of PyQt versus wxPython can be deferred. there's a lot of non-visual stuff to do:

Define ...
by yateleybob
Sun Oct 07, 2007 8:51 am
Forum: Document Classes
Topic: TeXnicCenter using PSTricks package
Replies: 18
Views: 19209

Re: TeXnicCenter using PSTricks package

I cannot get your test file to compile at the command line using TeXLive 2007 (March 2007) version of all packages.

I have no trouble at all using pstricks with TeXNicCenter and going via PS. This is logical as other postings have indicated because pstricks is designed for use with PS. Conversion ...
by yateleybob
Thu Aug 16, 2007 7:08 pm
Forum: General
Topic: c++ source code
Replies: 6
Views: 10980

Re: c++ source code

The listings package is definitely the way to go. Syntax highlighting is built-in but customisable.
by yateleybob
Tue Aug 14, 2007 8:44 am
Forum: Document Classes
Topic: TeXnicCenter using PSTricks package
Replies: 18
Views: 19209

Re: TeXnicCenter using PSTricks package

The following minimal test file

%%%%%%%%%%%
\documentclass[12pt]{article}
\usepackage{pstricks}
\begin{document}
\psset{unit=1mm}
\pscircle(0,0){10}
\end{document}
%%%%%%%%%%%
compiled and viewed correctly using LaTeX=>PS but not LaTeX=>PDF. Using LaTeX=>DVI the file compiled correctly but the ...
by yateleybob
Mon Jul 09, 2007 3:38 pm
Forum: General
Topic: Output file is a pdf regardless of which output profile is u
Replies: 3
Views: 3351

Re: Output file is a pdf regardless of which output profile is u

Is it actually a problem? Are you getting PDF output when you want dvi or ps?

All the variants of the latex command execute pdfTeX on my system (TeXLive2007) as they did on the previous version. The exact behaviour depends on the name by which it was invoked.

MikTeX may well behave in the same ...
by yateleybob
Mon Jul 09, 2007 3:28 pm
Forum: Development
Topic: The future of TeXnicCenter
Replies: 24
Views: 85071

Re: The future of TeXnicCenter

I think that the discussion of language is a side-issue. If C++ offers the best tools for the job, then use it; if C++ isn't fashionable, tough!

(BTW the *compilers* in the free versions of MS VC++/VB/C# kits appears to have no restrictions; it is the IDE capabilities that are limited. To prove ...