Search found 5 matches

by 99sono
Sun Nov 22, 2009 9:51 pm
Forum: Graphics, Figures & Tables
Topic: Problem: Invisible EPS (in .divps and .ps; not in.pdf)
Replies: 1
Views: 3335

Re: Problem: Invisible EPS (in .divps and .ps; not in.pdf)

Well,
i solved the problem.

1) Tune the printer do dump the post script file in .eps format. THis one is essential to get the image to be rendered in the fricking .dvi and .ps viewers.

2) Doing this creates the problem that exporting in landscape format screws it all up

3) Export in landscape ...
by 99sono
Sat Nov 21, 2009 9:41 pm
Forum: Graphics, Figures & Tables
Topic: Problem: Invisible EPS (in .divps and .ps; not in.pdf)
Replies: 1
Views: 3335

Problem: Invisible EPS (in .divps and .ps; not in.pdf)

Hi,
I am having some trouble displaying a .eps image in latex.

Problem:
I have managed to produce an .eps file by unconventional means, and some things are not working as they should.

1) When i compile my .tex srcs to .dvips and to .ps, the page that should contain the .eps figure is completely ...
by 99sono
Thu Jun 04, 2009 6:40 pm
Forum: General
Topic: Strange missing \endcsname inserted error
Replies: 5
Views: 18924

Re: Strange missing \endcsname inserted error

:D

Cheers mates, i do not know how you did it... but that worked out just fine.

Strange though: in my mmw the error the compiler complained about was the \equal, and in my actual document is the \endcsname. It did however solve the problem.
So ... whatever.
I'll just take it as part of the ...
by 99sono
Wed Jun 03, 2009 10:53 pm
Forum: General
Topic: Strange missing \endcsname inserted error
Replies: 5
Views: 18924

Strange missing \endcsname inserted error

Here is a mmw:

\documentclass{article}
\usepackage{ifthen}

\newcommand{\scenref}[1]{
\ifthenelse{\equal{#1}{jondoe}}
{Johndoe}
{Not Johndoe}
}

\begin{document}

\title{Ups You Did it again}
\author{99Sono}
\maketitle
\newpage

\section{working command}
Is John Doe doe john doe? \scenref{I guess ...
by 99sono
Wed Jun 03, 2009 5:42 pm
Forum: General
Topic: Strange missing \endcsname inserted error
Replies: 5
Views: 18924

Strange missing \endcsname inserted error

Hi,

Well i am having a strange error when i compile my sources and i just can't figure out why it happens.

Problem:
1) I have defined a command that prints one thing most of the time, but in case of recieving some special input it prints another. It uses the ifthenelse command.
Here it is the ...