Oken Keithellakpam

Back to all posts

My First Blog Post with LaTeX

Hello, World!

This is a blog post written in Markdown.

LaTeX Math Support

Euler's identity is beautifully written as inline math: eiπ+1=0e^{i\pi} + 1 = 0.

Here is a block equation:

abf(x)dx=F(b)F(a\int_{a}^{b} f(x) dx = F(b) - F(a

Code Blocks

Here is a Next.js component:

export default function Home() {
  return <h1>Hello Next.js</h1>;
}