Skip to content

Latest commit

 

History

History
87 lines (58 loc) · 1.94 KB

File metadata and controls

87 lines (58 loc) · 1.94 KB

MLProfile — Website

This repository hosts the website for Profile, a research initiative, built with Jekyll and deployed via GitHub Pages using the official Cayman theme.

Go there to see the live site.

Structure

This site is built with:

  • Markdown for content (.md files)
  • MathJax for LaTeX-style math rendering
  • Cayman Jekyll theme (official GitHub Pages theme)
  • GitHub Actions for automatic deployment

Main Pages

🧮 Writing Math with LaTeX

MathJax is included for rendering math expressions.

  • Inline math:
    Write \\( E = mc^2 \\) → \( E = mc^2 \)

\( E = mc^2 \)

$$ E = mc^2 $$

  • Block math:

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

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

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

➕ How to Add a New Page

To add a new page (e.g., a "Team" page):

  1. Create a new Markdown file like team.md with a front matter block:

    ---
    title: Team
    ---
    
    ## Our Team
    
    - Dr. Alice Smith
    - Prof. John Doe
  2. Link to the new page from index.md or other pages:

    [Home](index.md) | [Team](team.md)
  3. Commit and push your changes (on main) — GitHub Pages will rebuild the site automatically.

⚙️ Configuration

To change the site’s title, description, or theme, edit _config.yml:

title: Project X
description: Research project website
theme: jekyll-theme-cayman

🚀 Deployment

This site is automatically built and deployed by GitHub Actions.

No local installation of Ruby or Jekyll is required.