Skip to content

Stitch Joining Guide: Using the join Method

This document explains how to use the join command in stitch patterns to connect different parts of crochet work.

Basic Concepts

When creating crochet patterns, we typically create multiple parts (Parts), with each part representing different components of the work, such as a doll's body, head, limbs, etc. After completing each part, they need to be joined together, which is the purpose of the join command.

Syntax Format

The basic syntax of the join command is as follows:

Join:target_position,source_position

Where:

  • Join: (or join: or JOIN:): Indicates this is a joining command
  • target_position: The target position to be joined, usually the main body part
  • source_position: The source position to be joined to the target position, usually an additional part

The position is specified in the format: P{part_number}R{row_number}S{stitch_number}, for example, P1R5S3 represents the 3rd stitch of row 5 in part 1.

Position Notation

Positions can be represented in the following ways:

  1. Single Stitch: P1R5S3 - Specifies the 3rd stitch of row 5 in part 1
  2. Stitch Range: P1R5S3-S6 - Specifies stitches 3 to 6 of row 5 in part 1
  3. Entire Row: P1R5 - Specifies all stitches in row 5 of part 1
  4. Combined Positions: (P1R5S1-S3,P2R1) - Uses parentheses to combine multiple positions
  5. Repeated Part Iterations: P1.2R5 - Specifies row 5 of the second iteration of part 1

Repeated Part Notation

When a pattern uses the repeat(n) construct to create multiple iterations of the same part, you can join these iterations using the following notation:

P{part_number}.{iteration_number}R{row_number}S{stitch_number}

Where:

  • part_number: The part number
  • iteration_number: The iteration number within the repeated block (starting from 1)
  • row_number: The row number
  • stitch_number: The stitch number (optional, omit to refer to the entire row)

Example:

For a pattern with:

P1: 
repeat(2){
  R1: gold, MagicRing, 10X
  R2: 5(X, V)
  R3: 5(2X, V)
  R4: 5([X, T, F, T, X], 3SL)
}

The joining can be specified as:

Join: P1.1R4, P1.2R4

This joins the entire 4th row of the first iteration of part 1 with the entire 4th row of the second iteration of part 1.

Joining Rules

  1. Stitch Count Matching: The number of stitches at the target position and source position must match, otherwise the system will report an error
  2. Bidirectional Connection: After joining, the target stitch and source stitch establish a bidirectional connection
  3. Multiple-to-Multiple Joining: Multiple source positions can be joined to a target position simultaneously

Usage Examples

Example 1: Basic Joining

Join:P1R12S1,P2R1S1

This joins the 1st stitch of row 1 in part 2 to the 1st stitch of row 12 in part 1.

Example 2: Joining Stitch Ranges

Join:P1R5S1-S4,P2R1S1-S4

This joins stitches 1 to 4 of row 1 in part 2 to stitches 1 to 4 of row 5 in part 1.

Example 3: Joining Entire Rows

Join:P1R5,P2R1

This joins all stitches in row 1 of part 2 to row 5 of part 1.

Example 4: Complex Joining Combinations

Join:(P1R5S1-S3,P1R6S1-S3),(P2R1,P3R1)

This joins row 1 of part 2 and row 1 of part 3 to stitches 1 to 3 of row 5 and stitches 1 to 3 of row 6 in part 1.

Example 5: Joining Repeated Part Iterations

Join:P1.1R4,P1.2R4

This joins the entire 4th row of the first iteration to the entire 4th row of the second iteration of part 1, which is useful for creating closed shapes like stars or circles.

Notes

  1. Ensure that the number of stitches at the target position and source position are the same before joining
  2. For complex patterns, plan the joining order and positions carefully
  3. After joining, the overall shape may need adjustment to achieve the desired effect
  4. For large projects, group joining instructions and add comments for better organization and understanding
  5. When working with repeated parts, make sure to specify the correct iteration number in the joining instructions

Troubleshooting

If you encounter the following errors during joining:

  • Stitch count mismatch: target X stitches, source Y stitches: Check and ensure that the number of stitches at the target and source positions are the same
  • Invalid joining format: Check that the syntax format is correct, especially the position notation
  • Iteration not found: Verify that the iteration number specified in the join command exists in the pattern

By correctly using the join command, you can easily combine different parts of crochet work into a complete piece.