You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(28) |
Oct
(11) |
Nov
(3) |
Dec
(10) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
(7) |
Feb
(3) |
Mar
(32) |
Apr
(17) |
May
(18) |
Jun
(13) |
Jul
(3) |
Aug
(2) |
Sep
(8) |
Oct
(15) |
Nov
(2) |
Dec
(13) |
| 2004 |
Jan
|
Feb
(3) |
Mar
(6) |
Apr
(4) |
May
|
Jun
(7) |
Jul
(8) |
Aug
(1) |
Sep
(10) |
Oct
|
Nov
(6) |
Dec
|
| 2005 |
Jan
|
Feb
(18) |
Mar
(4) |
Apr
(3) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(4) |
Nov
|
Dec
(1) |
| 2006 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
(6) |
Oct
|
Nov
|
Dec
|
| 2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2015 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Prof. D. J. H. <j.h...@fh...> - 2005-03-15 13:57:34
|
Dear texpower-users,
I'm using a stepitemize-environment as follows:
\newenvironment{stepitemize}
{%
\begin{itemize}
\let\origitem=3D\item
% Here, the \mystep command is hidden
% inside \item
\renewcommand{\item}{\mystep\origitem}%
}
{%
\end{itemize}
}
to get a dimmed list with highlighted items. Now I wanted to do the s=
ame
trick for a stepdescription-environment.=20
\newenvironment{stepdescription}
{%
\begin{description}
\let\origitem=3D\item
% Here, the \mystep command is hidden
% inside \item
\renewcommand{\item}{\mystep\origitem}%
}
{%
\end{description}
}
Every thing works fine, but the contents of the brackets - the argume=
nts
of item - come out all on the same place near of the slide's bottom. =
Is
there anybody with a hint?
Thanks in advance
Jobst
--=20
Prof. Dr. Jobst Hoffmann Tel: +49-2461-99-3159
Fachhochschule Aachen Abt. J=C3=BClich Fax: +49-2461-99-3189
Fachbereich 3 email: j.h...@fh...
|
|
From: Hans F. N. <Han...@hi...> - 2005-02-24 20:52:37
|
On Thu, Feb 24, 2005 at 09:59:12AM +0100, Ben Mueller wrote:
> On Wed, 23 Feb 2005, Hans F. Nordhaug wrote:
[cut]
> > Your \switch solution has major drawback that you probably haven't considered
> > - you get empty steps, i.e., you need to advance two pages to get to bar.
> > Consider this example:
> > ----
> > \documentclass{seminar}
> > \usepackage[display]{texpower}
> > \usepackage{hyperref}
> > \begin{document}
> > \begin{slide}
> > \liststepwise*{
> > \begin{enumerate}
> > % The duplicate step in the first label is avoid by the star to \liststepwise
> > \item \step{\ifthenelse{\value{step}=\value{firststep}}{\label{foo}}{}} \step{bar}
> > % The duplicate step in the second (and following) labels are avoided by using \restep
> > \item \restep{\ifthenelse{\value{step}=\value{firststep}}{\label{foo2}}{}} \step{bar}
> > % These two \switch commands produce four pages - do you see?
> > \item \step{\switch{\label{foo3}}{bar}}
> > \item \step{\switch{\label{foo4}}{bar}}
> > \end{enumerate}
> > }
> > \ref{foo}
> > \end{slide}
> > \end{document}
> > ----
> >
> Hi Hans,
>
> you are right about my example producing empty steps. I should have
> written "\item \restep{\switch{\label{bar}}{foo}}" or "\step{\item
> \switch{\label{bar}}{foo}}" or something like that.
>
> But in your example the label `foo2' won't be defined, because when
> processing "\restep{...}" the value of the counter step is 2 while the
> value of firststep always is 1.
I stand corrected. "\item \restep{\switch{\label{bar}}{foo}}" works nicely.
> I wonder why using \steponce also produces the multiply-defined labels
I also wonder - because I also tried \steponce but couldn't make it work.
You are definitely touching an area of texpower that hasn't been tested enough.
I'll look more into it, but I think I have to let this case rest for now.
Thx a lot for your input.
Hans
|
|
From: Ben M. <bmu...@un...> - 2005-02-24 08:59:39
|
On Wed, 23 Feb 2005, Hans F. Nordhaug wrote:
> On Wed, Feb 23, 2005 at 09:06:50PM +0100, Ben Mueller wrote:
> >
> > Hi Hans,
> >
> > looking at your solution I found another approach:
> > ---
> > \documentclass{seminar}
> > \usepackage[display]{texpower}
> > \begin{document}
> > \begin{slide}
> > \liststepwise{
> > \begin{enumerate}
> > \item \switch{\label{foo}}{bar}
> > \end{enumerate}
> > }
> > \ref{foo}
> > \end{slide}
> > \end{document}
> > ---
> > In this case it's also possible to have several items and labels,
> > inserting e.g. "\item \step{\switch{\label{bar}}{foo}}" ...
>
> Your \switch solution has major drawback that you probably haven't considered
> - you get empty steps, i.e., you need to advance two pages to get to bar.
> Consider this example:
> ----
> \documentclass{seminar}
> \usepackage[display]{texpower}
> \usepackage{hyperref}
> \begin{document}
> \begin{slide}
> \liststepwise*{
> \begin{enumerate}
> % The duplicate step in the first label is avoid by the star to \liststepwise
> \item \step{\ifthenelse{\value{step}=\value{firststep}}{\label{foo}}{}} \step{bar}
> % The duplicate step in the second (and following) labels are avoided by using \restep
> \item \restep{\ifthenelse{\value{step}=\value{firststep}}{\label{foo2}}{}} \step{bar}
> % These two \switch commands produce four pages - do you see?
> \item \step{\switch{\label{foo3}}{bar}}
> \item \step{\switch{\label{foo4}}{bar}}
> \end{enumerate}
> }
> \ref{foo}
> \end{slide}
> \end{document}
> ----
>
Hi Hans,
you are right about my example producing empty steps. I should have
written "\item \restep{\switch{\label{bar}}{foo}}" or "\step{\item
\switch{\label{bar}}{foo}}" or something like that.
But in your example the label `foo2' won't be defined, because when
processing "\restep{...}" the value of the counter step is 2 while the
value of firststep always is 1.
I wonder why using \steponce also produces the multiply-defined labels
warning, see
---
\documentclass{seminar}
\usepackage[display]{texpower}
\begin{document}
\begin{slide}
\liststepwise*{
\begin{enumerate}
\item \steponce{\label{foo}} \step{bar}
\end{enumerate}
}
\ref{foo}
\end{slide}
\end{document}
---
Ben
|
|
From: Hans F. N. <Han...@hi...> - 2005-02-23 21:22:52
|
On Wed, Feb 23, 2005 at 09:06:50PM +0100, Ben Mueller wrote:
>
>
> On Wed, 23 Feb 2005, Hans F. Nordhaug wrote:
>
> > \documentclass{seminar}
> > \usepackage[display]{texpower}
> > \begin{document}
> > \begin{slide}
> > \liststepwise*{
> > \begin{enumerate}
> > \item \step{\ifthenelse{\value{step}=\value{firststep}}{\label{foo}}{}}
> > \step{bar}
> > \end{enumerate}
> > }
> > \ref{foo}
> > \end{slide}
> > \end{document}
> > ----
> > The trick is putting \label{foo} inside a step and only execute \label for
> > the first step. (You can of course make a command for this work around if
> > you really need it a lot.)
> >
>
> Hi Hans,
>
> looking at your solution I found another approach:
> ---
> \documentclass{seminar}
> \usepackage[display]{texpower}
> \begin{document}
> \begin{slide}
> \liststepwise{
> \begin{enumerate}
> \item \switch{\label{foo}}{bar}
> \end{enumerate}
> }
> \ref{foo}
> \end{slide}
> \end{document}
> ---
> In this case it's also possible to have several items and labels,
> inserting e.g. "\item \step{\switch{\label{bar}}{foo}}" ...
Your \switch solution has major drawback that you probably haven't considered
- you get empty steps, i.e., you need to advance two pages to get to bar.
Consider this example:
----
\documentclass{seminar}
\usepackage[display]{texpower}
\usepackage{hyperref}
\begin{document}
\begin{slide}
\liststepwise*{
\begin{enumerate}
% The duplicate step in the first label is avoid by the star to \liststepwise
\item \step{\ifthenelse{\value{step}=\value{firststep}}{\label{foo}}{}} \step{bar}
% The duplicate step in the second (and following) labels are avoided by using \restep
\item \restep{\ifthenelse{\value{step}=\value{firststep}}{\label{foo2}}{}} \step{bar}
% These two \switch commands produce four pages - do you see?
\item \step{\switch{\label{foo3}}{bar}}
\item \step{\switch{\label{foo4}}{bar}}
\end{enumerate}
}
\ref{foo}
\end{slide}
\end{document}
----
Regards,
Hans
|
|
From: Ben M. <bmu...@un...> - 2005-02-23 20:06:58
|
On Wed, 23 Feb 2005, Hans F. Nordhaug wrote:
> \documentclass{seminar}
> \usepackage[display]{texpower}
> \begin{document}
> \begin{slide}
> \liststepwise*{
> \begin{enumerate}
> \item \step{\ifthenelse{\value{step}=\value{firststep}}{\label{foo}}{}}
> \step{bar}
> \end{enumerate}
> }
> \ref{foo}
> \end{slide}
> \end{document}
> ----
> The trick is putting \label{foo} inside a step and only execute \label for
> the first step. (You can of course make a command for this work around if
> you really need it a lot.)
>
Hi Hans,
looking at your solution I found another approach:
---
\documentclass{seminar}
\usepackage[display]{texpower}
\begin{document}
\begin{slide}
\liststepwise{
\begin{enumerate}
\item \switch{\label{foo}}{bar}
\end{enumerate}
}
\ref{foo}
\end{slide}
\end{document}
---
In this case it's also possible to have several items and labels,
inserting e.g. "\item \step{\switch{\label{bar}}{foo}}" ...
Thanks
Ben
|
|
From: Hans F. N. <Han...@hi...> - 2005-02-23 17:52:14
|
On Wed, Feb 23, 2005 at 05:58:41PM +0100, Roland Schilling wrote:
> On Wed, 23 Feb 2005, Ben Mueller wrote:
>
> > Dear texpower-users,
> >
> > compiling the following minimal example
> > ----------------------------------------------------------
> > \documentclass{seminar}
> > \usepackage[display]{texpower}
> >
> > \begin{document}
> > \begin{slide}
> >
> > \liststepwise{
> > \begin{enumerate}
> > \item \label{foo} \step{bar}
> > \end{enumerate}
> > }
> >
> > \ref{foo}
> >
> > \end{slide}
> > \end{document}
> > ---------------------------------------------------------
> > I got a warning message about a multiply-defined label `foo'.
> > After removing the "\begin{slide}" and "\end{slide}" the warning
> > disappeared. But I hope, there are better solutions to avoid this
> > confusing warning.
>
>
> Try \documentclass{powersem} instead of \documentclass{seminar}.
> This fixes some problems occuring with the seminar class. If you
> intend to use 'hyperref' you should also load 'fixseminar.sty'
> after you loaded 'hyperref.sty'.
Even though using powersem over seminar is sound advice it doesn't solve this
problem. An ugly/verbose work-around is the following:
----
\documentclass{seminar}
\usepackage[display]{texpower}
\begin{document}
\begin{slide}
\liststepwise*{
\begin{enumerate}
\item \step{\ifthenelse{\value{step}=\value{firststep}}{\label{foo}}{}}
\step{bar}
\end{enumerate}
}
\ref{foo}
\end{slide}
\end{document}
----
The trick is putting \label{foo} inside a step and only execute \label for
the first step. (You can of course make a command for this work around if
you really need it a lot.)
Hans
PS! They way you have written it the label will of course be execute several
times - once for each step in the stepwise command and hence it's really not a
bug. However, since it does work without the slide environment I'll look more
into it.
|
|
From: Roland S. <ro...@rz...> - 2005-02-23 16:58:52
|
On Wed, 23 Feb 2005, Ben Mueller wrote:
> Dear texpower-users,
>
> compiling the following minimal example
> ----------------------------------------------------------
> \documentclass{seminar}
> \usepackage[display]{texpower}
>
> \begin{document}
> \begin{slide}
>
> \liststepwise{
> \begin{enumerate}
> \item \label{foo} \step{bar}
> \end{enumerate}
> }
>
> \ref{foo}
>
> \end{slide}
> \end{document}
> ---------------------------------------------------------
> I got a warning message about a multiply-defined label `foo'.
> After removing the "\begin{slide}" and "\end{slide}" the warning
> disappeared. But I hope, there are better solutions to avoid this
> confusing warning.
Try \documentclass{powersem} instead of \documentclass{seminar}.
This fixes some problems occuring with the seminar class. If you
intend to use 'hyperref' you should also load 'fixseminar.sty'
after you loaded 'hyperref.sty'.
HTH, Roland
+----------------------------------------------------------------------+
| Roland Schilling Home-Office: +49(89)32929-670 |
| Max-Planck-Institut f=FCr Gravitationsphysik |
| -- Albert-Einstein-Institut -- |
| D-85748 Garching E-mail: ro...@rz... |
| Germany http://www.geo600.uni-hannover.de |
+----------------------------------------------------------------------+
|
|
From: Ben M. <bmu...@un...> - 2005-02-23 16:34:26
|
Dear texpower-users,
compiling the following minimal example
----------------------------------------------------------
\documentclass{seminar}
\usepackage[display]{texpower}
\begin{document}
\begin{slide}
\liststepwise{
\begin{enumerate}
\item \label{foo} \step{bar}
\end{enumerate}
}
\ref{foo}
\end{slide}
\end{document}
---------------------------------------------------------
I got a warning message about a multiply-defined label `foo'.
After removing the "\begin{slide}" and "\end{slide}" the warning
disappeared. But I hope, there are better solutions to avoid this
confusing warning.
Ben
|
|
From: Kockaert P. <Pas...@ul...> - 2005-02-17 10:48:27
|
Hi Hans,
Thank you for your new solution.
This time there are no more glitch in transitions.=20
Regards.
Pascal
=2D--------- Message transmis ----------
Subject: Re: [Texpower-users] Re: pageTransitionXXX occurs at the wrong page
Date: Mercredi 16 F=E9vrier 2005 16:21
=46rom: "Hans F. Nordhaug" <Han...@hi...>
To: Pas...@ul...
We are still having problems with our mailserver.
Please forward to the list :-)
=2D------------------------------------------------------------------------=
=2D--
On Wed, Feb 16, 2005 at 03:36:12PM +0000, Kockaert Pascal wrote:
> I have tried your solution.
>
> I am glad that the page transitions occur correctly, now. Unfortunately,
> using \pause causes problems. Namely, using the seminar class, proper
> centering cannot be achieved.
You should use \centerslidesfalse - most stepwise constructions will break =
if
you don't do that.
> In addition, even in the attached example, there is a small glitch between
> the page that appears with the last dissolve, and the page that appears
> with the first replace transition.
Just change \stepwise to \parstepwise.
> Anyway, thank you for the time you spent on this problem, and also, thank
> you for telling me that the observed behaviour is not the expected one.
>
> I will try to combine your solution with mine and write to this list if I
> succeed to do so.
How about this. (I used pdflatex, hence pdftex option to hyperref):
=2D---
\documentclass{article}
\usepackage[display]{texpower}
\usepackage[pdftex,pdfpagemode=3DFullScreen]{hyperref}
\newcommand{\StepFrame}[3]
{% Now using \stepwise around everything instead of \pause
\stepwise*{%
\step{
\afterstep{\pageDuration{1}}
#1 - #2\par
}
\step{\afterstep{\stopAdvancing\pageTransitionDissolve}#3}%
\step{} % Hack / work-around needed to get the \pageTransitionDissolve to
% work; introduces one more step - like a pause. Seems to be unavoidable.
}
}
\begin{document}
\StepFrame{First Title}{A}{%
This is the text that appears a little while after the title and A
}
Ordinary transition for this text.
\newpage
\StepFrame{Third Title}{C}{%
This explanation
\step{is divided\afterstep{\pageTransitionReplace}}
\step{into four}
\step{different parts}
}
Ordinary transition for this text (and the three last parts above).
\end{document}
=2D---
Hans
=2D------------------------------------------------------
|
|
From: Kockaert P. <Pas...@ul...> - 2005-02-16 14:36:00
|
Le Mardi 15 F=E9vrier 2005 08:06, Kockaert Pascal a =E9crit ce qui suit, da=
ns un=20
message address=E9 =E0 tex...@li.... Ce message ava=
it=20
pour objet :=20
=AB [Texpower-users] Re: pageTransitionXXX occurs at the wrong page =BB.
> Dear Hans,
I have tried your solution.
I am glad that the page transitions occur correctly, now. Unfortunately, us=
ing=20
\pause causes problems. Namely, using the seminar class, proper centering=20
cannot be achieved.=20
In addition, even in the attached example, there is a small glitch between =
the=20
page that appears with the last dissolve, and the page that appears with th=
e=20
first replace transition.
Anyway, thank you for the time you spent on this problem, and also, thank y=
ou=20
for telling me that the observed behaviour is not the expected one.
I will try to combine your solution with mine and write to this list if I=20
succeed to do so.
Pascal
>
> ---------- Message transmis ----------
[cut]
> ---------------------------------------------------------------------
> \documentclass{article}
> \usepackage[display]{texpower}
> \usepackage[ps2pdf,pdfpagemode=3DFullScreen]{hyperref}
>
> \newcommand{\StepFrame}[3]
> {\pageDuration{1}
> #1 - #2
> \pause
> \stopAdvancing
> \stepwise*{%
> \step{\afterstep{\pageTransitionDissolve}#3}%
> \step{} % Hack / work-around needed to get the \pageTransitionDissolve to
> % work; introduces one more step - like a pause. Seems to be unavoidable.
> }
> }
>
> \begin{document}
>
> \StepFrame{First Title}{A}{%
> This is the text that appears a little while after the title and A
> }
>
> Ordinary transition for this text.
>
> \newpage
>
> \StepFrame{Third Title}{C}{%
> This explanation
> \step{is divided\afterstep{\pageTransitionReplace}}
> \step{into four}
> \step{different parts}
> }
>
> Ordinary transition for this text (and the three last parts above).
>
> \end{document}
>
> -------------------------------------------------------
[cut]
|
|
From: Kockaert P. <Pas...@ul...> - 2005-02-15 07:05:54
|
Hello Hans,=20 I will try your solution ASAP. Many thanks! Pascal =2D--------- Message transmis ---------- Subject: Re: [Texpower-users] pageTransitionXXX occurs at the wrong page Date: Lundi 14 F=E9vrier 2005 23:24 =46rom: "Hans F. Nordhaug" <Han...@hi...> To: Pas...@ul... Our mailserver (at www.himolde.no) is currently blacklisted so I can't reply to the list. Please forward my message to the list for the benefit of the other readers. Best regards, Hans On Sun, Feb 13, 2005 at 02:56:08AM +0100, PascaL Kockaert wrote: > \iffalse > > > > Dear TeXpower users, > > I am fighting with (PDF) page transitions, and do not succeed to get the > result that I would like to obtain. My question and a minimal example > showing the problem that I want to solve are joined at the end of this > message. [cut] Below is a truly minimal example that solves/works-around your problem. I have looked in to the TeXPower kernel and can't really see why I need the hack, but I can't spend more time on this now. Regards, Hans =2D-------------------------------------------------------------------- \documentclass{article} \usepackage[display]{texpower} \usepackage[ps2pdf,pdfpagemode=3DFullScreen]{hyperref} \newcommand{\StepFrame}[3] {\pageDuration{1} #1 - #2 \pause \stopAdvancing \stepwise*{% \step{\afterstep{\pageTransitionDissolve}#3}% \step{} % Hack / work-around needed to get the \pageTransitionDissolve to % work; introduces one more step - like a pause. Seems to be unavoidable. } } \begin{document} \StepFrame{First Title}{A}{% This is the text that appears a little while after the title and A } Ordinary transition for this text. \newpage \StepFrame{Third Title}{C}{% This explanation \step{is divided\afterstep{\pageTransitionReplace}} \step{into four} \step{different parts} } Ordinary transition for this text (and the three last parts above). \end{document} =2D------------------------------------------------------ |
|
From: PascaL K. <Pas...@ul...> - 2005-02-13 01:55:51
|
\iffalse
Dear TeXpower users,
I am fighting with (PDF) page transitions, and do not succeed to get the
result
that I would like to obtain.
My question and a minimal example showing the problem that I want to solve
are joined at the end of this message. [In fact this whole message, starting
with iffalse should compile as a LaTeX document.]
I have defined a new environment called "StepFrame" as
follows.
\newcommand{\StepFrame}[3]
{\pageTransitionDissolve
\stepwise*{\centering
\parbox[c][2\semcm][c]{0.8\linewidth}{%
\centering\LARGE\bfseries#1}%
\par\vspace{\stretch{1}}\noindent
\resizebox{!}{6\semcm}{\fbox{#2}}%
\par\vspace{\stretch{1}}\noindent
\mbox{\step{%
\afterstep{\pageDuration{1}\pageTransitionReplace}}%
\step{%
\afterstep{\stopAdvancing}}%
\begin{minipage}[l][6\semcm][c]{0.99\linewidth}
\restep{#3}
\end{minipage}%
}}}
So that a slide containing
\begin{slide}
\StepFrame{First Title}{A}{This is a comment}
\end{slide}
would appear progressively. First the Title and A will appear
(pageTransitionReplace). Then, one second later, the comment should appear
with a glitter transition. Further transitions should occur only when a key
is pressed.
This works pretty well (see slides A and B of the example) except when the
comment contains \verb"\step" commands (or equivalents), like illustrated on
slide C.
For example, if the command is made of the three lines
This time, the explanation
\bstep{is divided}
\bstep{into three parts.}
I would like the glitter transition to occur when
"This time, the explanation" appears,
and not for "into three parts." !!!
Could someone tell me how I should modify my definition of \StepFrame. Also
(far less important question) is there a mean to define an environment
\begin{StepFrame}{a}{b}c\end{StepFrame} that would be equivalent to
\StepFrame{a}{b}{c} ?
Many thanks for any answer.
Pascal
\fi
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%
%%% This document explains my question and is also a minimal example.
%%% Jump to "%%% Explanation of the problem" to read my question.
%%% Jump to "%%% Beginning of minimal example" to see the example
%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass{powersem}
\usepackage[display]{texpower}
\usepackage{fixseminar}
\usepackage{times}
\usepackage[ps2pdf,pdfpagemode=FullScreen]{hyperref}
\newcommand{\StepFrame}[3]
{\pageTransitionDissolve
\stepwise*{\centering
\parbox[c][2\semcm][c]{0.8\linewidth}{\centering\LARGE\bfseries#1}%
\par\vspace{\stretch{1}}\noindent
\resizebox{!}{6\semcm}{\fbox{#2}}%
\par\vspace{\stretch{1}}\noindent
\mbox{\step{%
\afterstep{\pageDuration{1}\pageTransitionReplace}}%
\step{%
\afterstep{\stopAdvancing}}%
\begin{minipage}[l][6\semcm][c]{0.99\linewidth}
\restep{#3}
\end{minipage}%
}}}
\begin{document}
%%% Explanation of the problem. Not necessary for minimal example.
\begin{slide}
I have defined a new environment called \texttt{StepFrame} as
follows. \small
\begin{verbatim}
\newcommand{\StepFrame}[3]
{\pageTransitionDissolve
\stepwise*{\centering
\parbox[c][2\semcm][c]{0.8\linewidth}{%
\centering\LARGE\bfseries#1}%
\par\vspace{\stretch{1}}\noindent
\resizebox{!}{6\semcm}{\fbox{#2}}%
\par\vspace{\stretch{1}}\noindent
\mbox{\step{%
\afterstep{\pageDuration{1}\pageTransitionReplace}}%
\step{%
\afterstep{\stopAdvancing}}%
\begin{minipage}[l][6\semcm][c]{0.99\linewidth}
\restep{#3}
\end{minipage}%
}}}
\end{verbatim}
\normalsize
\newslide
So that a slide containing
\begin{verbatim}
\begin{slide}
\StepFrame{First Title}{A}{This is a comment}
\end{slide}
\end{verbatim}
would appear progressively. First the Title and A will appear
(pageTransitionReplace). Then, one second later, the comment
should appear with a glitter transition. Further transitions would
occur only when a key is pressed.
This works pretty well (see slides A and B after this one) except
when the comment contains \verb"\step" commands (or equivalents),
like illustrated on slide C.
\end{slide}
%%% Beginning of minimal example
\begin{slide}
\StepFrame{First Title}{A}{%
This is the text that appears a little while after the title and A
}
\end{slide}
\begin{slide}
\StepFrame{Second Title}{B}{%
Another explanation for slide B.}
\end{slide}
\begin{slide}
\StepFrame{Third Title}{C}{%
This time, the explanation \bstep{is divided} \bstep{into three
parts.}
\bfseries I would like the glitter transition to occur when ``This
time, the explanation'' appears, and not for ``into three parts.''
!!!}
\end{slide}
%%% End of minimal example.
\end{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
From: Hans F. N. <Han...@hi...> - 2005-02-11 09:54:07
|
On Thu, Feb 10, 2005 at 10:47:17AM -0500, Shahram Shahbazpanahi wrote:
> Hi Hans,
>
>
> When I run Latex, I get the following list:
[cut]
The problem is xcolor. Newer versions of pstricks use xcolor in stead of color
as the default color package. This breaks something other packages coming with
pstricks. To work-around this bug in pstricks, edit fulldemo.tex In front of
\usepackage{pstcol}
(on line 106) add
\usepackage[noxcolor]{pstricks}
Regards,
Hans
PS! You know you don't have to compile fulldemo.tex yourself - it's available
from the website.
|
|
From: Shahram S. <sh...@ma...> - 2005-02-10 15:51:13
|
Hi Hans,
When I run Latex, I get the following list:
I can also send you the .log file if you need it
Thanks,
Shahram
*File List*
tpslifonts.sty 2004/07/27 v0.6d Configure presentation fonts.
ifthen.sty 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
t1cmr.fd 1999/05/25 v2.5h Standard LaTeX font definitions
t1cmfr.fd 1999/05/25 v2.5h Standard LaTeX font definitions
t1cmdh.fd 1999/05/25 v2.5h Standard LaTeX font definitions
t1cmfib.fd 1999/05/25 v2.5h Standard LaTeX font definitions
t1cmss.fd 1999/05/25 v2.5h Standard LaTeX font definitions
t1cmtt.fd 1999/05/25 v2.5h Standard LaTeX font definitions
__TPpreamble.tex
powersem.cls 2004/07/27 v0.8a Create online Presentations with seminar.
seminar.cls 1997/10/13, 1.4
scrartcl.cls 2004/01/07 v2.9p LaTeX2e KOMA document class
scrlfile.sty 2004/01/07 v2.9p LaTeX2e KOMA package
size11.clo 2004/02/16 v1.4f Standard LaTeX file (size option)
typearea.sty 2004/01/07 v2.9p LaTeX2e KOMA package
sem-page.sty
url.sty 2004/03/15 ver 3.1 Verb mode for urls, etc.
inputenc.sty 2004/02/05 v1.0d Input encoding file
latin1.def 2004/02/05 v1.0d Input encoding file
hyperref.sty 2003/11/30 v6.74m Hypertext links for LaTeX
keyval.sty 1999/03/16 v1.13 key=value parser (DPC)
pd1enc.def 2003/11/30 v6.74m Hyperref: PDFDocEncoding definition (HO)
hyperref.cfg 2003/03/08 v1.0 MiKTeX 'hyperref' configuration
hypertex.def 2003/11/30 v6.74m Hyperref driver for HyperTeX specials
fixseminar.sty 2003/05/26 v0.0.5 Fix some problems of seminar.
ifpdf.sty 2001/06/14 v1.0 Providing \ifpdf (HO)
texpower.sty 2004/07/27 v0.1b Create Dynamic Presentations with LaTeX.
calc.sty 1998/07/07 v4.1b Infix arithmetic (KKT,FJ)
tpoptions.cfg
color.sty 1999/02/16
color.cfg 2003/03/08 v1.0 MiKTeX 'color' configuration
dvips.def 1999/02/16 v3.0i Driver-dependant file (DPC,SPQR)
dvipsnam.def 1999/02/16 v3.0i Driver-dependant file (DPC,SPQR)
dvipsnam.def 1999/02/16 v3.0i Driver-dependant file (DPC,SPQR)
tpcolors.cfg
tpsettings.cfg
__TPcfg.tex
__TPindexing.tex
makeidx.sty 2000/03/29 v1.0m Standard LaTeX package
pstcol.sty 2001/06/20 v1.1 PSTricks color colompatibility (DPC)
pstricks.sty 2004/05/12 v0.2l LaTeX wrapper for `PSTricks' (RN,HV)
pstricks.tex 2004/06/22 v1.04 `PSTricks' (tvz)
xcolor.sty 2004/07/04 v2.00 LaTeX color extensions (UK)
color.cfg 2003/03/08 v1.0 MiKTeX 'color' configuration
pst-node.sty 2004/07/15 package wrapper for pst-node.tex
pst-node.tex 2000/11/09 97 patch 11 `pst-node' (tvz)
graphicx.sty 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
graphics.sty 2001/07/07 v1.0n Standard LaTeX Graphics (DPC,SPQR)
trig.sty 1999/03/16 v1.09 sin cos tan (DPC)
graphics.cfg 2003/03/12 v1.1 MiKTeX 'graphics' configuration
amsmath.sty 2000/07/18 v2.13 AMS math features
amstext.sty 2000/06/29 v2.01
amsgen.sty 1999/11/30 v2.0
amsbsy.sty 1999/11/29 v1.2d
amsopn.sty 1999/12/14 v2.01 operator names
soul.sty 2003/11/17 v2.4 letterspacing/underlining (mf)
cmtt.sty 1996/05/25 1.1 Handing of the cmtt font
mTTenc.def
mttcmtt.fd
seminar.bug
seminar.bg2
nameref.sty 2003/12/03 v2.21 Cross-referencing by name of section
picpsexample.tex
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
fig-1.mps Graphic file (type eps)
----- Original Message -----
From: "Hans F. Nordhaug" <Han...@hi...>
To: <tex...@li...>
Sent: Thursday, February 10, 2005 7:50 AM
Subject: Re: [Texpower-users] Page Transition
> On Wed, Feb 09, 2005 at 09:01:22PM -0500, Shahram Shahbazpanahi wrote:
> > Hi there,
> >
> > Can somebody tell where I can find the tex files of different demo files
> > such as "fulldemo.tex" as well as the tex files of those pdf files in
the
> > TexPower website?
>
> This is a broken install by the MiKTeX team. Unpack
> texmf\source\texpower-src.cab then run
> "latex tpbundle.ins". This will produce all the example tex files.
>
> > For some unknown reason, the "fulldemo.tex" from TexPower ver 0.0.9d
can
> > not be compiled by Latex. But It works with PDFLatex. When I compile
> > "fulldemo.tex" I get lots of such warnings
>
> Try with the current version v0.1b. If the problem is still there
> add \listfiles to the beginning of fulldemo.tex and post the list of
files.
>
> Hans
>
> PS! Please, please start a new topic (use a different subject) next time
you
> start a new subject/problem - don't just hit reply on one of your old
> messages.
>
>
> -------------------------------------------------------
> SF email is sponsored by - The IT Product Guide
> Read honest & candid reviews on hundreds of IT Products from real users.
> Discover which products truly live up to the hype. Start reading now.
> http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
> _______________________________________________
> Texpower-users mailing list
> Tex...@li...
> https://lists.sourceforge.net/lists/listinfo/texpower-users
>
|
|
From: Shahram S. <sh...@ma...> - 2005-02-10 15:16:07
|
Thanks Hans!
I worked, I mean I was missing "ps2pdf" option for hyperref.
Regards,
Shahram
----- Original Message -----
From: "Hans F. Nordhaug" <Han...@hi...>
To: <tex...@li...>
Sent: Thursday, February 10, 2005 7:43 AM
Subject: Re: [Texpower-users] Page Transition
> On Wed, Feb 09, 2005 at 06:55:26PM -0500, Shahram Shahbazpanahi wrote:
> > Hi there,
> >
> > I am having a problem with page transition when I use Latex + dvi2ps +
> > ps2pdf. In fact, there is no page transition effects in this case. I
need
> > to mention that I am using the last version of MikTex.
> >
> > It however works perfectly when I use PDFlatex!
>
> First of all - always give a minimal, but complete example so we can see
what
> is the problem with your code. Probably your problem is an missing option
to
> hyperref - the following works for:
> ------
> \documentclass{article}
> \usepackage[ps2pdf]{hyperref}
> \usepackage[lightbackground,display]{texpower}
> \begin{document}
> \pageTransitionDissolve
> \mbox{}
> \vfill
> \centerline{Hello!}
> \vfill
> \newpage
> \darkbackground
> \mbox{}
> \vfill
> \centerline{Good bye!}
> \vfill
> \end{document}
> ----
>
> Notice the "ps2pdf" (or you could have used "dvips") to hyperref.
>
> Hans
>
> PS! This is hyperref issue, not texpower, really.
>
>
> -------------------------------------------------------
> SF email is sponsored by - The IT Product Guide
> Read honest & candid reviews on hundreds of IT Products from real users.
> Discover which products truly live up to the hype. Start reading now.
> http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
> _______________________________________________
> Texpower-users mailing list
> Tex...@li...
> https://lists.sourceforge.net/lists/listinfo/texpower-users
>
|
|
From: Hans F. N. <Han...@hi...> - 2005-02-10 12:50:55
|
On Wed, Feb 09, 2005 at 09:01:22PM -0500, Shahram Shahbazpanahi wrote: > Hi there, > > Can somebody tell where I can find the tex files of different demo files > such as "fulldemo.tex" as well as the tex files of those pdf files in the > TexPower website? This is a broken install by the MiKTeX team. Unpack texmf\source\texpower-src.cab then run "latex tpbundle.ins". This will produce all the example tex files. > For some unknown reason, the "fulldemo.tex" from TexPower ver 0.0.9d can > not be compiled by Latex. But It works with PDFLatex. When I compile > "fulldemo.tex" I get lots of such warnings Try with the current version v0.1b. If the problem is still there add \listfiles to the beginning of fulldemo.tex and post the list of files. Hans PS! Please, please start a new topic (use a different subject) next time you start a new subject/problem - don't just hit reply on one of your old messages. |
|
From: Hans F. N. <Han...@hi...> - 2005-02-10 12:43:24
|
On Wed, Feb 09, 2005 at 06:55:26PM -0500, Shahram Shahbazpanahi wrote:
> Hi there,
>
> I am having a problem with page transition when I use Latex + dvi2ps +
> ps2pdf. In fact, there is no page transition effects in this case. I need
> to mention that I am using the last version of MikTex.
>
> It however works perfectly when I use PDFlatex!
First of all - always give a minimal, but complete example so we can see what
is the problem with your code. Probably your problem is an missing option to
hyperref - the following works for:
------
\documentclass{article}
\usepackage[ps2pdf]{hyperref}
\usepackage[lightbackground,display]{texpower}
\begin{document}
\pageTransitionDissolve
\mbox{}
\vfill
\centerline{Hello!}
\vfill
\newpage
\darkbackground
\mbox{}
\vfill
\centerline{Good bye!}
\vfill
\end{document}
----
Notice the "ps2pdf" (or you could have used "dvips") to hyperref.
Hans
PS! This is hyperref issue, not texpower, really.
|
|
From: Shahram S. <sh...@ma...> - 2005-02-10 02:05:16
|
Hi there,
Can somebody tell where I can find the tex files of different demo files =
such as "fulldemo.tex" as well as the tex files of those pdf files
in the TexPower website?
For some unknown reason, the "fulldemo.tex" from TexPower ver 0.0.9d =
can not be compiled by Latex. But It works with=20
PDFLatex. When I compile "fulldemo.tex" I get lots of such warnings
Incompatible color definition on input line xx
After these messages, I get:
! Argument of \c@lor@to@ps has an extra }.
<inserted text>
\par
l.122 }
%
?
Can somebody kindly help me out?
Thanks in advance,
Shahram |
|
From: Shahram S. <sh...@ma...> - 2005-02-09 23:59:17
|
Hi there, I am having a problem with page transition when I use Latex + dvi2ps + = ps2pdf. In fact, there is no page transition effects in this case. I need to mention that I am using the last version of MikTex. It however works perfectly when I use PDFlatex! Can somebody help me out? Regards, Shahram |
|
From: Hans F. N. <Han...@hi...> - 2004-11-23 08:41:13
|
On Mon, Nov 22, 2004 at 03:52:51PM +0100, Prof. Dr. Jobst Hoffmann wrote:
> In a presentation I need three steps on one foil and some letters to be
> seen and to be hidden:
>
> Seen in
> step 1: A, B, C
> step 2: A, B, C, D, E
> step 3: A, B, D, F, G, H, I
>
> I try to get this result with the following code, but it fails showing C
> in step 1 and D in step 2. What is wrong?
Your problem was
\step[\value{step}=1][\value{step}=2]{...}
which is better written
\step[][\value{step}<3]{...}
However, you can make your code much easier by using \steponce and \restep.
Does this do what you want? (I removed the star on \stepwise to make step
1 actually be step 1, but you may of course add it if you want.)
\documentclass [a4paper]{article}
\usepackage{pstricks}
\usepackage[lightbackground,display]{texpower}
\begin{document}
\stepwise{
\begin{pspicture}(0,0)(9,9)
\rput(0.0, 8){A -- always }
\rput(4,5){B -- always }
\step[][\value{step}<3]{%
\rput(2., 6.5){C -- in step 1 and 2} }
\steponce{%
\rput(5.5, 6.5){E -- in step 2}
}
\restep{%
\rput(11,5){D -- in step 2 and 3}
}
\step{%
\rput(7.5,8){F -- in step 3}
\rput(4,8){G -- in step 3}
\rput(5.75,6.5){H -- in step 3}
\rput(9.25,6.5){I -- in step 3}
}
\end{pspicture}
} % End of stepwise
\end{document}
Best regards,
Hans
|
|
From: Prof. D. J. H. <j.h...@fh...> - 2004-11-22 14:54:49
|
In a presentation I need three steps on one foil and some letters to =
be
seen and to be hidden:
Seen in
step 1: A, B, C
step 2: A, B, C, D, E
step 3: A, B, D, F, G, H, I
I try to get this result with the following code, but it fails showin=
g C
in step 1 and D in step 2. What is wrong?
\documentclass
[calcdimensions,landscape,letterpaper,KOMA,final]{powersem}
\usepackage[lightbackground,display]{texpower}
\usepackage{tpslifonts}
\usepackage{pstricks}
\begin{document}
\begin{slide}
\stepwise*{
\psset{%
xunit=3D0.75cm,
yunit=3D0.75cm,
runit=3D0.75cm
}
\tiny
\begin{pspicture}(0,0)(12,9)=20
\rput(0.0, 8){A -- always visible}
\rput(4,5){B -- always visible}
\step[\value{step}=3D1][\value{step}=3D2]{%
\rput(2., 6.5){C -- visible in step 1 and 2} }
\step[\value{step}=3D2][\value{step}=3D2]{%
\rput(5.5, 6.5){E -- visible in step 2}
}
\step[\value{step}=3D2][\value{step}=3D3]{%
\rput(11,5){D -- visible in step 2 and 3}
}
\step[\value{step}=3D3][\value{step}=3D3]{%
\rput(7.5,8){F -- visible in step 3}
\rput(4,8){G -- visible in step 3}
\rput(5.75,6.5){H -- visible in step 3}
\rput(9.25,6.5){I -- visible in step 3}
}
\end{pspicture}
}
\end{slide}
\end{document}
Many thanks for your help in advance!
--=20
Prof. Dr. Jobst Hoffmann <j.h...@fh...>
Fachhochschule Aachen, Abt. J=C3=BClich
|
|
From: Hans F. N. <Han...@hi...> - 2004-11-15 19:48:38
|
On Mon, Nov 15, 2004 at 08:08:03PM +0100, Grzegorz Kulewski wrote:
> On Mon, 15 Nov 2004, Hans F. Nordhaug wrote:
>
> >On Sun, Nov 14, 2004 at 10:57:23PM +0100, Grzegorz Kulewski wrote:
> >>Hi,
> >>
> >>I am experiencing strange problem with texpower. I am from Poland and want
> >>to use babel with polish option. I also want to use fontenc T1 to be able
> >>to write some Polish diacritical characters.
> >>
> >>\documentclass[12pt]{article}
> >>\usepackage[T1]{fontenc}
> >>\usepackage[latin2]{inputenc}
> >>\usepackage{tpslifonts}
> >[cut]
> >>But this gives me error:
> >>
> >>Warning: pdflatex (file eclq8): Font eclq8 at 1200 not found
> >>Warning: pdflatex (file eclq8): Font eclq8 at 900 not found
> >>Warning: pdflatex (file ecltt8): Font ecltt8 at 975 not found
> >>Warning: pdflatex (file eclq8): Font eclq8 at 975 not found
> >>Warning: pdflatex (file eclq8): Font eclq8 at 1866 not found
> >>
> >>and generates empty PDF.
> >>
> >>What should I do? Please anwser fast.
> >
> >1) Don't use tpslifonts.
>
> That is the bad choice. :-) I have presentation to write and I need some
> big presentation like fonts for pdfLaTeX.
For a presentation you should consider using a presentation class like beamer
or foils or seminar/powersem.
> >2) Fix your tex distribution so tpslifonts works.
> >
> >PS! 2) isn't a texpower issue and should be discussed on the mailing list
> >for your tex distribution. I checked and at least teTeX and MiKTeX contains
> >the eclq as metafont source (texmf/fonts/source/jknappen/ec/eclq8.mf) and
> >compiles your example without problems.
>
>
> Sorry if this is wrong list!
>
> But... I _have_ teTeX. And I have this font
>
> $ ls -al /usr/share/texmf/fonts/source/jknappen/ec/eclq8.mf
> -rw-r--r-- 1 root root 1809 lis 15 00:31
> /usr/share/texmf/fonts/source/jknappen/ec/eclq8.mf
>
> I have teTeX 2.0.2 from Gentoo. And everything seems to be working fine
> but TeXPower, so I written to this list. I am not very experienced with
> pdfTeX. Does anybody know what should I do? Should I report bug to Gentoo
> or to some teTeX list?
You should report it to the teTeX mailing list. The problem is that pdftex
doesn't generate the pk fonts from the metafont source automatically. Run
latex and then dvips on the file - ignoring the errors - and then pdftex and
you should be fine, since dvips generated the pk-fonts for you.
The reason there is a big difference between using "\usepackage[T1]{fontenc}"
or not is that many fonts doesn't exist in type1 format with T1 encoding and
hence you need the pk-fonts. When you exclude "\usepackage[T1]{fontenc}" there
are type1 fonts and there is no need to generated pk-fonts.
Once again - this is not a texpower/tpslifonts issue.
Hans
|
|
From: Grzegorz K. <ka...@po...> - 2004-11-15 19:08:16
|
On Mon, 15 Nov 2004, Hans F. Nordhaug wrote:
> On Sun, Nov 14, 2004 at 10:57:23PM +0100, Grzegorz Kulewski wrote:
>> Hi,
>>
>> I am experiencing strange problem with texpower. I am from Poland and want
>> to use babel with polish option. I also want to use fontenc T1 to be able
>> to write some Polish diacritical characters.
>>
>> \documentclass[12pt]{article}
>> \usepackage[T1]{fontenc}
>> \usepackage[latin2]{inputenc}
>> \usepackage{tpslifonts}
> [cut]
>> But this gives me error:
>>
>>
>> Warning: pdflatex (file eclq8): Font eclq8 at 1200 not found
>> Warning: pdflatex (file eclq8): Font eclq8 at 900 not found
>> Warning: pdflatex (file ecltt8): Font ecltt8 at 975 not found
>> Warning: pdflatex (file eclq8): Font eclq8 at 975 not found
>> Warning: pdflatex (file eclq8): Font eclq8 at 1866 not found
>>
>> and generates empty PDF.
>>
>> What should I do? Please anwser fast.
>
> 1) Don't use tpslifonts.
That is the bad choice. :-) I have presentation to write and I need some
big presentation like fonts for pdfLaTeX.
> 2) Fix your tex distribution so tpslifonts works.
>
> PS! 2) isn't a texpower issue and should be discussed on the mailing list for
> your tex distribution. I checked and at least teTeX and MiKTeX contains the
> eclq as metafont source (texmf/fonts/source/jknappen/ec/eclq8.mf) and compiles
> your example without problems.
Sorry if this is wrong list!
But... I _have_ teTeX. And I have this font
$ ls -al /usr/share/texmf/fonts/source/jknappen/ec/eclq8.mf
-rw-r--r-- 1 root root 1809 lis 15 00:31 /usr/share/texmf/fonts/source/jknappen/ec/eclq8.mf
I have teTeX 2.0.2 from Gentoo. And everything seems to be working fine
but TeXPower, so I written to this list. I am not very experienced with
pdfTeX. Does anybody know what should I do? Should I report bug to Gentoo
or to some teTeX list?
This:
$ cat test.latex
\documentclass[12pt]{article}
\usepackage[T1]{fontenc}
\usepackage[latin2]{inputenc}
\usepackage{tpslifonts}
\usepackage{soul}
\usepackage{graphicx}
\usepackage[screen,nocfg,nopanel,sectionbreak]{pdfscreen}
\margins{.35in}{.35in}{.1in}{.45in}
\screensize{6.25in}{8in}
\usepackage[display]{texpower}
\usepackage[polish]{babel}
\begin{document}
Foo - bar!
\end{document}
Gives me:
$ pdflatex test.latex
This is pdfTeX, Version 3.14159-1.10b (Web2C 7.4.5)
(./test.latex{/usr/share/texmf/pdftex/config/pdftex.cfg}
LaTeX2e <2001/06/01>
Babel <v3.7h> and hyphenation patterns for american, french, german,
ngerman, p
olish, nohyphenation, loaded.
(/usr/share/texmf/tex/latex/base/article.cls
Document Class: article 2001/04/21 v1.4e Standard LaTeX document class
(/usr/share/texmf/tex/latex/base/size12.clo))
(/usr/share/texmf/tex/latex/base/fontenc.sty
(/usr/share/texmf/tex/latex/base/t1enc.def))
(/usr/share/texmf/tex/latex/base/inputenc.sty
(/usr/share/texmf/tex/latex/base/latin2.def))
(/usr/share/texmf/tex/latex/texpower/addons/tpslifonts.sty
(/usr/share/texmf/tex/latex/base/ifthen.sty))
(/usr/share/texmf/tex/latex/misc/soul.sty)
(/usr/share/texmf/tex/latex/graphics/graphicx.sty
(/usr/share/texmf/tex/latex/graphics/keyval.sty)
(/usr/share/texmf/tex/latex/graphics/graphics.sty
(/usr/share/texmf/tex/latex/graphics/trig.sty)
(/usr/share/texmf/tex/latex/config/graphics.cfg)
(/usr/share/texmf/tex/latex/graphics/pdftex.def))) (./pdfscreen.sty
(/usr/share/texmf/tex/latex/graphics/color.sty
(/usr/share/texmf/tex/latex/config/color.cfg))
(/usr/share/texmf/tex/latex/tools/calc.sty)
(/usr/share/texmf/tex/latex/misc/comment.sty Excluding comment 'comment')
(/usr/share/texmf/tex/latex/hyperref/hyperref.sty
(/usr/share/texmf/tex/latex/hyperref/pd1enc.def)
(/usr/share/texmf/tex/latex/config/hyperref.cfg)
Implicit mode ON; LaTeX internals redefined
(/usr/share/texmf/tex/latex/misc/url.sty))
*hyperref using driver hpdftex*
(/usr/share/texmf/tex/latex/hyperref/hpdftex.def
(/usr/share/texmf/tex/latex/psnfss/pifont.sty
(/usr/share/texmf/tex/latex/psnfss/upzd.fd)
(/usr/share/texmf/tex/latex/psnfss/upsy.fd)))
Package hyperref Warning: Option `pagebackref' has already been used,
(hyperref) setting the option has no effect on input line
337.
Package hyperref Warning: Option `backref' has already been used,
(hyperref) setting the option has no effect on input line
337.
Include comment 'screen' Excluding comment 'print'
(/usr/share/texmf/tex/latex/amsfonts/amssymb.sty
(/usr/share/texmf/tex/latex/amsfonts/amsfonts.sty))
(/usr/share/texmf/tex/latex/amsmath/amsbsy.sty
(/usr/share/texmf/tex/latex/amsmath/amsgen.sty)))
(/usr/share/texmf/tex/latex/texpower/texpower.sty
(/usr/share/texmf/tex/latex/texpower/tpoptions.cfg)
(/usr/share/texmf/tex/latex/oberdiek/ifpdf.sty)
(/usr/share/texmf/tex/latex/texpower/tpsettings.cfg))
(/usr/share/texmf/tex/generic/babel/babel.sty
(/usr/share/texmf/tex/generic/babel/polish.ldf
(/usr/share/texmf/tex/generic/babel/babel.def))) (./test.aux)
(/usr/share/texmf/tex/context/base/supp-pdf.tex
(/usr/share/texmf/tex/context/base/supp-mis.tex
loading : Context Support Macros / Missing
)
loading : Context Support Macros / PDF
) (/usr/share/texmf/tex/latex/hyperref/nameref.sty) (./test.out)
(./test.out)
Package pdfscreen Warning: No overlay specified
(pdfscreen) output will have only background color on input
line
14.
[1{/usr/share/texmf/dvips/config/pdftex.map}] (./test.aux) )
Warning: pdflatex (file eclq8): Font eclq8 at 177 not found
Output written on test.pdf (1 page, 1766 bytes).
Transcript written on test.log.
While this:
$ cat test.latex
\documentclass[12pt]{article}
%\usepackage[T1]{fontenc}
\usepackage[latin2]{inputenc}
\usepackage{tpslifonts}
\usepackage{soul}
\usepackage{graphicx}
\usepackage[screen,nocfg,nopanel,sectionbreak]{pdfscreen}
\margins{.35in}{.35in}{.1in}{.45in}
\screensize{6.25in}{8in}
\usepackage[display]{texpower}
\usepackage[polish]{babel}
\begin{document}
Foo - bar!
\end{document}
Compiles ok:
$ pdflatex test.latex
This is pdfTeX, Version 3.14159-1.10b (Web2C 7.4.5)
(./test.latex{/usr/share/texmf/pdftex/config/pdftex.cfg}
LaTeX2e <2001/06/01>
Babel <v3.7h> and hyphenation patterns for american, french, german,
ngerman, p
olish, nohyphenation, loaded.
(/usr/share/texmf/tex/latex/base/article.cls
Document Class: article 2001/04/21 v1.4e Standard LaTeX document class
(/usr/share/texmf/tex/latex/base/size12.clo))
(/usr/share/texmf/tex/latex/base/inputenc.sty
(/usr/share/texmf/tex/latex/base/latin2.def))
(/usr/share/texmf/tex/latex/texpower/addons/tpslifonts.sty
(/usr/share/texmf/tex/latex/base/ifthen.sty))
(/usr/share/texmf/tex/latex/misc/soul.sty)
(/usr/share/texmf/tex/latex/graphics/graphicx.sty
(/usr/share/texmf/tex/latex/graphics/keyval.sty)
(/usr/share/texmf/tex/latex/graphics/graphics.sty
(/usr/share/texmf/tex/latex/graphics/trig.sty)
(/usr/share/texmf/tex/latex/config/graphics.cfg)
(/usr/share/texmf/tex/latex/graphics/pdftex.def))) (./pdfscreen.sty
(/usr/share/texmf/tex/latex/graphics/color.sty
(/usr/share/texmf/tex/latex/config/color.cfg))
(/usr/share/texmf/tex/latex/tools/calc.sty)
(/usr/share/texmf/tex/latex/misc/comment.sty Excluding comment 'comment')
(/usr/share/texmf/tex/latex/hyperref/hyperref.sty
(/usr/share/texmf/tex/latex/hyperref/pd1enc.def)
(/usr/share/texmf/tex/latex/config/hyperref.cfg)
Implicit mode ON; LaTeX internals redefined
(/usr/share/texmf/tex/latex/misc/url.sty))
*hyperref using driver hpdftex*
(/usr/share/texmf/tex/latex/hyperref/hpdftex.def
(/usr/share/texmf/tex/latex/psnfss/pifont.sty
(/usr/share/texmf/tex/latex/psnfss/upzd.fd)
(/usr/share/texmf/tex/latex/psnfss/upsy.fd)))
Package hyperref Warning: Option `pagebackref' has already been used,
(hyperref) setting the option has no effect on input line
337.
Package hyperref Warning: Option `backref' has already been used,
(hyperref) setting the option has no effect on input line
337.
Include comment 'screen' Excluding comment 'print'
(/usr/share/texmf/tex/latex/amsfonts/amssymb.sty
(/usr/share/texmf/tex/latex/amsfonts/amsfonts.sty))
(/usr/share/texmf/tex/latex/amsmath/amsbsy.sty
(/usr/share/texmf/tex/latex/amsmath/amsgen.sty)))
(/usr/share/texmf/tex/latex/texpower/texpower.sty
(/usr/share/texmf/tex/latex/texpower/tpoptions.cfg)
(/usr/share/texmf/tex/latex/oberdiek/ifpdf.sty)
(/usr/share/texmf/tex/latex/texpower/tpsettings.cfg))
(/usr/share/texmf/tex/generic/babel/babel.sty
(/usr/share/texmf/tex/generic/babel/polish.ldf
(/usr/share/texmf/tex/generic/babel/babel.def))) (./test.aux)
(/usr/share/texmf/tex/context/base/supp-pdf.tex
(/usr/share/texmf/tex/context/base/supp-mis.tex
loading : Context Support Macros / Missing
)
loading : Context Support Macros / PDF
) (/usr/share/texmf/tex/latex/hyperref/nameref.sty) (./test.out)
(./test.out)
Package pdfscreen Warning: No overlay specified
(pdfscreen) output will have only background color on input
line
14.
[1{/usr/share/texmf/dvips/config/pdftex.map}] (./test.aux)
)</usr/share/texmf/f
onts/type1/bluesky/latex/lcmss8.pfb>
Output written on test.pdf (1 page, 5110 bytes).
Transcript written on test.log.
I am confused. What I am doing wrong?
Thanks in advance,
Grzegorz Kulewski
|
|
From: Hans F. N. <Han...@hi...> - 2004-11-15 07:06:19
|
On Sun, Nov 14, 2004 at 10:57:23PM +0100, Grzegorz Kulewski wrote:
> Hi,
>
> I am experiencing strange problem with texpower. I am from Poland and want
> to use babel with polish option. I also want to use fontenc T1 to be able
> to write some Polish diacritical characters.
>
> \documentclass[12pt]{article}
> \usepackage[T1]{fontenc}
> \usepackage[latin2]{inputenc}
> \usepackage{tpslifonts}
[cut]
> But this gives me error:
>
>
> Warning: pdflatex (file eclq8): Font eclq8 at 1200 not found
> Warning: pdflatex (file eclq8): Font eclq8 at 900 not found
> Warning: pdflatex (file ecltt8): Font ecltt8 at 975 not found
> Warning: pdflatex (file eclq8): Font eclq8 at 975 not found
> Warning: pdflatex (file eclq8): Font eclq8 at 1866 not found
>
> and generates empty PDF.
>
> What should I do? Please anwser fast.
1) Don't use tpslifonts.
or
2) Fix your tex distribution so tpslifonts works.
Regards,
Hans
PS! 2) isn't a texpower issue and should be discussed on the mailing list for
your tex distribution. I checked and at least teTeX and MiKTeX contains the
eclq as metafont source (texmf/fonts/source/jknappen/ec/eclq8.mf) and compiles
your example without problems.
|
|
From: Grzegorz K. <ka...@po...> - 2004-11-14 21:57:42
|
Hi,
I am experiencing strange problem with texpower. I am from Poland and want
to use babel with polish option. I also want to use fontenc T1 to be able
to write some Polish diacritical characters.
\documentclass[12pt]{article}
\usepackage[T1]{fontenc}
\usepackage[latin2]{inputenc}
\usepackage{tpslifonts}
\usepackage{soul}
\usepackage{graphicx}
\usepackage[screen,nocfg,nopanel,sectionbreak]{pdfscreen}
\margins{.35in}{.35in}{.1in}{.45in}
\screensize{6.25in}{8in}
\usepackage[display]{texpower}
\usepackage[polish]{babel}
\begin{document}
But this gives me error:
Warning: pdflatex (file eclq8): Font eclq8 at 1200 not found
Warning: pdflatex (file eclq8): Font eclq8 at 900 not found
Warning: pdflatex (file ecltt8): Font ecltt8 at 975 not found
Warning: pdflatex (file eclq8): Font eclq8 at 975 not found
Warning: pdflatex (file eclq8): Font eclq8 at 1866 not found
and generates empty PDF.
What should I do? Please anwser fast.
Thanks in advance,
Grzegorz Kulewski
PS. When I try to move babel inclusion before soul I am getting some ams
errors.
|