Template. Will update this note later

You can include standard HTML formatting like bold text, italic text, and links.

Use lists for structured information:

Or ordered lists:

  1. First item
  2. Second item

Code Examples

For inline code, use the <code> tag: const x = 10;

For blocks of code, wrap <code> inside <pre>:


# Python example
def greet(name):
    print(f"Hello, {name}!")

greet("World")
        

For LaTeX math notation, use `$ $` for inline (e.g., $E=mc^2$) and `$$ $$` for display:

$$ \int_0^\infty e^{-x^2} dx = \frac{\sqrt{\pi}}{2} $$

            % Your MATLAB code starts here
            % Example:
            A = [1, 2; 3, 4];
            b = [5; 6];
            x = A \ b; % Solve linear system
            
            disp('Solution x:');
            disp(x);
            % Remember to escape special characters like < > &
            

Images

Remember to adjust image paths if they are stored relative to the root:


« Back to Notes List