Search found 6 matches

by Spider
Wed Jan 01, 2014 1:32 pm
Forum: General
Topic: pgf missed package
Replies: 0
Views: 3439

pgf missed package

Hi all,
I am working on a presentation using beamer and I would like to display a series of images with a specified delay. I found the following code:

\frame{
\only<1>{
\begin{centering}
\pgfimage[scale=.5]{fish1.jpg}
\par
\end{centering}}

\transduration<2>{5}

\only<2>{
\begin{centering ...
by Spider
Sun Jul 28, 2013 11:06 am
Forum: General
Topic: LaTeX Philosophy Question
Replies: 4
Views: 3273

Re: LaTeX Philosophy Question

Hi InquisitorMo.
Unfortunately your question isn't technical, I can't answer a philosophical question :cry:
by Spider
Sat Jul 27, 2013 4:20 pm
Forum: Document Classes
Topic: Result of embedded Video in Presentation File
Replies: 1
Views: 3433

Result of embedded Video in Presentation File

Hi.
Yes, it will be a pdf file with a video in it.
Try this code after putting a video in your folder.

Code: Select all

\documentclass{beamer}
\usepackage{hyperref}
\usepackage{flashmovie}
\begin{document}
\flashmovie[width=12cm,height=8cm,engine=flv-player,auto=1]{video.flv}
\end{document}
by Spider
Sat Jul 27, 2013 4:14 pm
Forum: New Members
Topic: Hi All
Replies: 3
Views: 2932

Re: Hi All

Hi.
In order to learn how to use Latex perfectly, I suggest to you to start doing your work just in Latex and you presentations just in beamer. You've to like it to master it.
Keep reading books daily (at least half an hour a day) and to learn new techniques from tutorials.
by Spider
Sat Jul 27, 2013 4:01 pm
Forum: Texmaker and TeXstudio
Topic: Writing Greek
Replies: 2
Views: 6268

Writing Greek

Hi.
In order to write Greek you can use the math environment.
Here is an example:

Code: Select all

The variable $\alpha$ is the entrainment coefficient, when $\Gamma \ll 1$ the plume is lazy.
by Spider
Sat Jul 27, 2013 3:56 pm
Forum: Graphics, Figures & Tables
Topic: Side-by-side figures with variable width and height
Replies: 1
Views: 11180

Side-by-side figures with variable width and height

Hi.
You can use two minipages side-by-side.
Here is an example.

\begin{figure}
\begin{minipage}[c]{9cm}
\includegraphics[width=9cm, height=5cm]{jet.jpg}
\caption{jet}
\label{jet}
\end{minipage}
\begin{minipage}[c]{7cm}
\includegraphics[width=7cm, height=5cm]{plume.jpg}
\caption{Panache}
\label ...