Graphics, Figures & TablesHow to fix overlapping Automatas?

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
tonguim
Posts: 24
Joined: Fri Nov 06, 2009 4:32 pm

How to fix overlapping Automatas?

Post by tonguim »

Hi all,

I'm trying to draw many automatas in the same file for a homework purpose. I've observe an overlaping of the automatas in my file.

How can fix the problem please? I tried to use the \section and \subsection tags, but it doesn't do anything.

See as attachment the output of my latex file, got with the command
xelatex --shell-escape MyOutput.tex
.

Here is my latex code:

Code: Select all

Code, edit and compile here:
\documentclass[12pt,letterpaper,boxed]{amspset}
\usepackage{vaucanson-g}
\usepackage{multicol}
\duedate{\today}
\begin{document}
\section*{Question 1}
\begin{problem}[1.1.1]
\end{problem}
\subsection*{automate 1}
Réponse:
\begin{solution}
\begin{VCPicture}{(0,-2)(6,2)}
% states
\State[A]{(0,-1)}{A} \FinalState[B]{(3,0)}{B} \State[C]{(6,0)}{C}
\FinalState[D]{(3,-3)}{D} \State[E]{(6,-3)}{E}
% initial--final
\Initial{A}
% transitions
\EdgeL{A}{B}{a} \ArcL{B}{C}{b} \ArcR{B}{C}{b}
\EdgeR{A}{D}{b} \ArcL{D}{E}{b} \ArcR{D}{E}{a}
%
\end{VCPicture}
\end{solution}
\subsection*{automate 2}
\begin{solution}
\begin{VCPicture}{(0,-2)(6,2)}
% states
\State[A]{(0,0)}{A} \FinalState[B]{(3,0)}{B} \FinalState[C]{(6,0)}{C}
% initial--final
\Initial{A}
% transitions
\EdgeL{A}{B}{a} \ForthBackOffset \ArcL{B}{C}{a,b} \ArcL{C}{B}{a}
%
\end{VCPicture}
\end{solution}
\subsection*{automate 3}
\begin{solution}
\begin{VCPicture}{(0,-2)(6,2)}
% states
 
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Attachments
MyOutput.pdf
(76.5 KiB) Downloaded 141 times

Recommended reading 2024:

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

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

jocom
Posts: 25
Joined: Fri May 07, 2010 4:28 pm

Re: How to fix overlapping Automatas?

Post by jocom »

It might not be the most elegant solution, but you could consider separating the automata by pagebreaks (i.e. inserting \newpage between them).

But, on the other hand, there might not be a nice typographical solution as the floats are outnumbering the prose by far in your document.

I hope you will find a good solution!

jocom
Post Reply