Blog Sample One
This is Header 2
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Β
What you can do with Quarto
With Quarto, you can create a wide range of documents, including:
- Reports: Create reports that combine text, code, and data to tell a story or present an analysis.
- Books: Write books that include code examples, data visualizations, and interactive elements.
- Presentations: Create presentations that include interactive plots, tables, and code execution.
- Dashboards: Build interactive dashboards that allow users to explore data and run code.
- Websites: Create websites that include code snippets, data visualizations, and interactive elements.
This is should be a code block highlight
console.log( 'Code is Poetry' );
pip install gurobipy
Latex Integration
This is uses equation and begin aligned.
Include DIV to prevent overflow on width.
Inline package load.
\(\require{asmath}\)
\(\require{mathtools}\)
$$
\begin{equation}
\begin{aligned}
&\min_{x} \: (c + \epsilon_re)^Tx \\
& \text{s.t.} \\
& [A + \Delta_{ij}]x + x_s = b + \delta_k e, \\
& x, x_s \geq 0.
\end{aligned}
\label{eq-lp-left}
\end{equation}
$$
This is another set of code.
\[
\begin{equation}
\begin{aligned}
& \Delta_{ij} = D_1ED_2, \quad \quad \delta_j = -D_1f, \\
& \text{where} \\
& D_1 = \text{diag} \left( \frac{r_i}{E|y| + f} \right)_i, \quad \text{and} \quad D_2 = \text{diag}(\text{sign}(y_i)).
\end{aligned}
\label{eq-example-4}
\end{equation}
\]
This is html table with equations inside.
Equation 1 | Equation 2 |
---|---|
Inline \(LaTeX\) is here. \(\delta_{A}\) | Block equation here $$ \mathbf{A} = \begin{pmatrix} A_1 & 0 & \cdots & 0 \\ 0 & A_2 & \cdots & 0 \\ \vdots & \vdots & \ddots & \vdots \\ 0 & 0 & \cdots & A_n \end{pmatrix} $$ |
Quarto has native latex integration commands can be used in the document. For example, you can use \\LaTeX to render the logo. \\( and \\) is used to start and end the latex code for inline and new line $$ also \\[ and \\] for block quotes.
The latex code below is the Linear Program in latex format.
minπ₯f(π₯)s.t.π΄π₯β€π,π₯β₯0.minxf(x)s.t.Axβ€b,xβ₯0.
Where π΄ββπΓπAβRmΓn.