tikzpicture
and an itemize
list. I want the list to be right-aligned to fit on the slide. I try to do that with \hfill
, but it's not working. Here is the code of the frame:
Code: Select all
\begin{frame}
\begin{block}{Subprogram Solver}
\end{block}
\begin{itemize}
\item It's running n -- times; \\
\item $\overline{F}(\varphi) = -\varphi \, '' + \sin \varphi - \gamma$; \\
\item $\varepsilon$ -- stop--criteria. \\
\end{itemize}
\tikzstyle{my loop}=[->,to path={
.. controls +(300:1) and +(560:1) .. (\tikztotarget) \tikztonodes}]
\begin{tikzpicture}
\path (0, 0) node(a) [ellipse, draw] {$\varphi_0$};
\path (0, -1) node(b) [rectangle, draw] {$\varphi^n = \varphi^{n-1} + \tau_n \cdot w^n$};
\path (0, -3) node(c) [diamond, draw] {$\| \overline{F}(\varphi^n) \| < \varepsilon$};
\path (6, -3) node(d) [rectangle, draw] {Continue (we have a solution)};
\draw[->] (a) to (b);
\draw[->] (b) to (c);
\draw[->] (c) to node[above] {yes} (d);
\draw[->] (c) to (0, -5) node[right] {no} to (-2.5, -5) to (-2.5, 0) to (a);
\end{tikzpicture}
\end{frame}