Tux
29-11-2009, 21:36
Hallo!
Ich habe momentan große Probleme mit Latex Beamer und einem Algorithmus. Irgendwie ist der Algorithmus viel zu groß für die Folie. Wenn ich die Font Size des Algorithmus verkleinern könnte wäre das die Lösung. Komisch ist, dass der Algorithmus Font in der Klasse Article um einiges kleiner ist als in der Beamer Klasse, warum das so ist, ist mir unklar. Ich probier da jetzt schon 1,5 Stunden herum und finde einfach keine Lösung.
Hier mein Code:
\subsection{Algorithmus}
\frame[<+->]
{
\frametitle{Algorithmus}
\begin{algorithm}[H]
\caption{Scatter Search Algorithmus}
\begin{algorithmic}[1]
\STATE $P\gets \emptyset$
\STATE $P\gets diversificationGeneration()$
\STATE $RefSet\gets \{x_1,\ldots,x_b\} \leq f(x_2) \leq \ldots \leq f(x_b)$
\STATE $NewSolutions\gets TRUE$
\WHILE{$NewSolutions$}
\STATE $NewSubsets\gets generateSubsets()$
\STATE $NewSolutions\gets FALSE$
\WHILE{$NewSubsets \not= \emptyset)$}
\STATE $x\gets solutionCombination(NewSubsets.first)$
\IF{$x \notin RefSet \land f(x) < f(x_b)$}
\STATE $x_b\gets x$
\STATE $reorderRefSet()$
\STATE $NewSolutions\gets TRUE$
\ENDIF
\STATE $NewSubsets\gets NewSubsets \setminus s$
\ENDWHILE
\ENDWHILE
\end{algorithmic}
\end{algorithm}
}
Kann mir jemand helfen?
Danke!
lg,
Tux.
Ich habe momentan große Probleme mit Latex Beamer und einem Algorithmus. Irgendwie ist der Algorithmus viel zu groß für die Folie. Wenn ich die Font Size des Algorithmus verkleinern könnte wäre das die Lösung. Komisch ist, dass der Algorithmus Font in der Klasse Article um einiges kleiner ist als in der Beamer Klasse, warum das so ist, ist mir unklar. Ich probier da jetzt schon 1,5 Stunden herum und finde einfach keine Lösung.
Hier mein Code:
\subsection{Algorithmus}
\frame[<+->]
{
\frametitle{Algorithmus}
\begin{algorithm}[H]
\caption{Scatter Search Algorithmus}
\begin{algorithmic}[1]
\STATE $P\gets \emptyset$
\STATE $P\gets diversificationGeneration()$
\STATE $RefSet\gets \{x_1,\ldots,x_b\} \leq f(x_2) \leq \ldots \leq f(x_b)$
\STATE $NewSolutions\gets TRUE$
\WHILE{$NewSolutions$}
\STATE $NewSubsets\gets generateSubsets()$
\STATE $NewSolutions\gets FALSE$
\WHILE{$NewSubsets \not= \emptyset)$}
\STATE $x\gets solutionCombination(NewSubsets.first)$
\IF{$x \notin RefSet \land f(x) < f(x_b)$}
\STATE $x_b\gets x$
\STATE $reorderRefSet()$
\STATE $NewSolutions\gets TRUE$
\ENDIF
\STATE $NewSubsets\gets NewSubsets \setminus s$
\ENDWHILE
\ENDWHILE
\end{algorithmic}
\end{algorithm}
}
Kann mir jemand helfen?
Danke!
lg,
Tux.