Skip to content

LATEX package for drawing grafcets (sequential function charts)

Notifications You must be signed in to change notification settings

nagimov/grafcet2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

grafcet2

LATEX package for drawing grafcets (sequential function charts)

% ---------------------------------------------------------------------------- %
%                                GRAFCET2 0.1                                  %
% ---------------------------------------------------------------------------- %
%         Ruslan Nagimov                                                       %
%         github: https://nagimov.github.com/grafcet2/                          %
%         e-mail: [email protected]                                          %
% ---------------------------------------------------------------------------- %
% This package is based on Pierre Chatelier's GRAFCET package:                 %
%         GRAFCET 1.0                                                          %
%         e-mail: [email protected]                            %
%         web:    https://perso.club-internet.fr/ktd                            %
% More commands were added, variable names and comments were translated to     %
% English.                                                                     %
% ---------------------------------------------------------------------------- %
% This package allows to draw nice grafcets (sequential function charts) using %
% latex.                                                                       %
%                                                                              %
% Required packages:                                                           %
%     # float                                                                  %
%     # ifthen                                                                 %
%     # hhline                                                                 %
%     # tikz                                                                   %
% ---------------------------------------------------------------------------- %
% The syntax of commands:                                                      %
%                                                                              %
%     \Transition{text}                                                        %
%         Transition block represents the line, connecting two steps. The text %
%         usually represents the condition which has to be met in order to     %
%         proceed execution.                                                   %
%                                                                              %
%     \Step{text}                                                              %
%         Step block represents the square, executing command.                 %
%                                                                              %
%     \FirstStep{text}                                                         %
%         The same as \Step, drawn with a double line, used for the first step %
%         in the function/routine.                                             %
%                                                                              %
%     \MacroStep{text}                                                         %
%         The same as \Step, drawn with extra lines at a top and a bottom of   %
%         the block.                                                           %
%                                                                              %
%     \Jump{text}                                                              %
%         Jump block represents unconditional jump to another step in the      %
%         code. It's somehow equivalent to GOTO command in different           %
%         languages. The jump point has to be described in the text block.     %
%                                                                              %
%     \Divergence{...}{...}                                                    %
%         Divergence block is used to represent "OR" conditions. Creates       %
%         single horizontal line.                                              %
%                                                                              %
%     \Fork{...}{...}                                                          %
%         Fork block is used to represent "AND" conditions (parallel           %
%         processing). Creates double horizontal line.                         %
%                                                                              %
%     \Loop{...}                                                               %
%         Loop block is used to create cycled execution path.                  %
%                                                                              %
%     \Nop                                                                     %
%         Creates blank space with vertical line (useful for filling blank     %
%         steps after forks).                                                  %
% ---------------------------------------------------------------------------- %
%                                                                              %
%                     Pseudographic explanation of commands                    %
%                                                                              %
%                     ╔═════════════╗                                          %
%                     ║             ║                                          %
%                     ║ First  Step ║                                          %
%                     ║             ║                                          %
%                     ╚══════╤══════╝                                          %
%                            │                                                 %
%                            │                                                 %
%                           ─┼─ Transition                                     %
%                            │                                                 %
%                            │                                                 %
%                     ───────┼─────────────────────┬───────  # Divergence      %
%                            │                     │                           %
%                            │                     │                           %
%                     ┌──────┴──────┐       ┌──────┴──────┐\                   %
%                     ├─────────────┤       │             │ \                  %
%                     │ Macro  Step │       │  Jump Step  │  >                 %
%                     ├─────────────┤       │             │ /                  %
%                     └──────┬──────┘       └──────┬──────┘/                   %
%                            │                     │                           %
%                            │                     │                           %
%                     ───────┼─────────────────────┴───────                    %
%                            │                                                 %
%                            │                                                 %
%                            │                                                 %
%                            │                                                 %
%                     ═══════╪═════════════════════╤═══════  # Fork            %
%                            │                     │                           %
%                            │                     │                           %
%                     ┌──────┴──────┐       ┌──────┴──────┐                    %
%                     │             │       │             │                    %
%                     │    Step     │       │    Step     │                    %
%                     │             │       │             │                    %
%                     └──────┬──────┘       └──────┬──────┘                    %
%                            │                     │                           %
%                            │                     │                           %
%                     ═══════╪═════════════════════╧═══════                    %
%                            │                                                 %
%                            │                                                 %
%                            │                                                 %
%                            │                                                 %
%                            │<───────────┐  # Loop                            %
%                            │            │                                    %
%                            │            │                                    %
%                     ┌──────┴──────┐     │                                    %
%                     │             │     │                                    %
%                     │    Step     │     ^                                    %
%                     │             │     │                                    %
%                     └──────┬──────┘     │                                    %
%                            │            │                                    %
%                            │            │                                    %
%                            └──────>─────┘                                    %
%                                                                              %
% ---------------------------------------------------------------------------- %

About

LATEX package for drawing grafcets (sequential function charts)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages