Document ClassesSlides class -- Landscape mode?

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
latexforever
Posts: 120
Joined: Fri Nov 14, 2008 9:40 pm

Slides class -- Landscape mode?

Post by latexforever »

Hello everybody,

I'm now using the slides class, and I want to put the different slides in landscape mode. For this, I'm using

Code: Select all

\documentclass[landscape]{slides}
; it seems to work, but does not modify "physical" page orientation, so the text is landscape-oriented, but not the page containing it.

What can I do? I've looked carefully slides' manual, but there is no explanation about it, except that it could be interesting to use:

Code: Select all

\DeclareOption{a4paper}
{\setlength\paperheight {297mm}%
\setlength\paperwidth {210mm}}
, but do I really have to modify the package to obtain this landscape mode?

Thanks!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Slides class -- Landscape mode?

Post by gmedina »

Hi,

you can use the landscape option for the geometry package:

Code: Select all

\documentclass{slides}
\usepackage[landscape]{geometry}

\begin{document}

\begin{slide}
 blah, blah
\end{slide}

\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
latexforever
Posts: 120
Joined: Fri Nov 14, 2008 9:40 pm

Slides class -- Landscape mode?

Post by latexforever »

Here is the output: http://www.student.montefiore.ulg.ac.be ... i/test.pdf. It seems not to work.
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Slides class -- Landscape mode?

Post by localghost »

It should work when compiling with pdflatex. With latex you will need the dvips option in the list for the document class.

Just for your information. LaTeX is not a word processor, but a typesetting system. This is a point you should correct in your text.


Best regards
Thorsten¹
latexforever
Posts: 120
Joined: Fri Nov 14, 2008 9:40 pm

Slides class -- Landscape mode?

Post by latexforever »

Thanks for your answer: I had to use dvips option.
I've modified the text, but only on the two editions, because I can't remember where I put the .tex files of the beamer presentation. If I don't find them, I'll anyway put an erratum.

Anyway, you can notice it is a really basical presentation, because it was destined to people who had no idea of what LaTeX was.
latexforever
Posts: 120
Joined: Fri Nov 14, 2008 9:40 pm

Re: Slides class -- Landscape mode?

Post by latexforever »

And how can I produce 2-up or 4-up transparents with the Slides class?
(I can do it with Seminar, but I know it is possible for the Slides class.)

Thanks!
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Slides class -- Landscape mode?

Post by localghost »

latexforever wrote:And how can I produce 2-up or 4-up transparents with the Slides class?
(I can do it with Seminar, but I know it is possible for the Slides class.)[...]
If you know that it is possible, just do it. I don't know how. The slides class from standard LaTeX is very restricted. Even overlays are problematic. I suggest to change to another class. But the modern classes are made more for beamer presentations than for presentations with foils.
latexforever
Posts: 120
Joined: Fri Nov 14, 2008 9:40 pm

Slides class -- Landscape mode?

Post by latexforever »

localghost wrote:
latexforever wrote:And how can I produce 2-up or 4-up transparents with the Slides class?
(I can do it with Seminar, but I know it is possible for the Slides class.)[...]
If you know that it is possible, just do it. I don't know how. The slides class from standard LaTeX is very restricted. Even overlays are problematic. I suggest to change to another class. But the modern classes are made more for beamer presentations than for presentations with foils.
I've tried using 2up (http://www.ctan.org/tex-archive/macros/ ... up/2up.pdf) and twoup (http://www.ctan.org/tex-archive/macros/ ... /twoup.pdf) packages, but I never have a result as I want it to be.
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Slides class -- Landscape mode?

Post by localghost »

I would consider twoup-gen (2up) outdated and the usage of twoupltx (twoup) too complicated. I guess the best would be to compile the slides to PDF as usual and then rearrange them with the pdfpages package by including them into another document.
latexforever
Posts: 120
Joined: Fri Nov 14, 2008 9:40 pm

Re: Slides class -- Landscape mode?

Post by latexforever »

Thanks for your answer.
It's an interesting topic.
Post Reply