Slashdot Mirror


User: Dekel

Dekel's activity in the archive.

Stories
0
Comments
10
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 10

  1. Re:LaTeX? Raw, please on Scribus Cracks the Big Leagues in Print · · Score: 1

    Take a look at fig2sty.

  2. Benchmarks on Dual 1Ghz G4 PowerMac With Extra Yummy · · Score: 1
    Which is faster? G4, Athlon or P4 ? Get some answers here

    (for the lazy, the G4 is slower than the Athlon in all the tests, except the RC5 benchmark)

  3. Re:Ten Reasons Why TeX/LaTeX is Better than Word on Writing Documentation · · Score: 1

    I just checked and it DOES work.
    Anyway, there are lots of other ways to define a shortcut.
    E.g.

    \let\beq=\equation
    \let\eeq=\endequation

    or

    \newcommand{\eqn}[1]{\begin{equation}#1\end{equa ti on}}

    You can also program your editor to to create a short key sequence that inserts \begin{equation}..\end{equation}

  4. Re:No question - use LaTeX - DVIPDFM on Writing Documentation · · Score: 1
    ps2pdf always produces jaggy pdf (in my experience) when read using windows

    This can easily be changed. See the TeX FAQ

  5. Re:Ten Reasons Why TeX/LaTeX is Better than Word on Writing Documentation · · Score: 1
    \def\begeq{\begin{equation}}
    \def\endeq{\end{equation}}

    \beq
    \frac{foo}{bar}
    \eeq
    Perhaps the problem is that you defined \begeq and \endeq macros, but then you used \beq and \eeq ?
  6. Re:No question - use LaTeX on Writing Documentation · · Score: 1
    I recently started using ps2pdf to generate PDF output (after running latex, then dvips) to put on the course web page. But the output looks really horrible on-screen, although it prints out OK.
    See the TeX FAQ for a solution for this.
    However, I often include EPS (Encapsulated PostScript) files in my LaTeX documents, and pdflatex can't deal with them.
    Pdflatex supports inclusion of PDF files. You can convert an EPS to PDF using epstopdf, or you can set up pdflatex so it will make the conversion automatically. Read the docs.
    The docs for dvipdfm also seem to indicate that it can't deal with embedded EPS files. So I guess I'm still stuck with ps2pdf...
    dvipdfm CAN handle EPS files.
  7. Re:No question - use LaTeX - DVIPDFM on Writing Documentation · · Score: 1
    Excellent! I'd love to be able to generate PDF and PS from the exact same DVI source file; this looks like just the thing.

    Unless you use pstricks or similar packages.

    What is wrong with ps2pdf ? It produces PDF files as good as the ones produced by pdflatex/dvipdfm (assuming you set up dvips to use type1 fonts).

  8. Re:LaTeX vs WYSIWYG on Writing Documentation · · Score: 1
    LaTeX does have some disadvantages, however:

    1.No unicode support.

    Omega is an extension of TeX that supports unicode.
    Even standard TeX can have unicode support: See the CJK and unicode packages (for LaTeX).

  9. Re:LyX on Writing Documentation · · Score: 1
    You may want to have a look at LyX with KDE user interface (KLyX) then (no binaries there; try this klyx page on rpmfind.net).

    The LyX people write that it is currently unmaintained, but the last version I tried worked quite stable.

    While KLyX is stable, it doesn't contain the new features that were added to lyx in the recent years, so I recommend not to use it.
    Hopefully, a qt2 version of LyX will be released this year.

  10. Re:TeX gone? Nope. on Writing Documentation · · Score: 1
    > METAFONT is pretty much integrated into TeX if you're using...

    TeX doesn't know anything about fonts. It only uses font metric files (.tfm). The job of handling fonts is left for the dvi-to-x program.
    Dvips can handle any postscript font, and TrueType fonts can easily be converted to postscript (type 42).
    Dvipdfm can handle both postscript and TrueType fonts (pdftex also handle both type of fonts).