Title Page

By Authors

This is the title page.

Foreword

This is the foreword.

Introduction

This is the introduction.

Chapter 1

This is Chapter 1. It contains things like an intro.

void myfunction(){
    printf("hello");
}

All of this code should be copyable.

#include <stdio.h>

void main(){
    printf("hello!");
    return 0;
}

An image:

the alt text Figure 1-0: A resistor `r2` and an LED `d1`

Here is more text after the image.

Here is an embedded youtube video:

A video caption

This is after the video.

Chapter 1

This is Chapter 1.1. It contains more content.

Chapter 2

This is Chapter 2. It contains things like content.

void myfunction2(){
    printf("hello again");
}

Some more information.

The same c file:

#include <stdio.h>

void main(){
    printf("hello!");
    return 0;
}