-
I'm trying to combine LaTeX and columns in my quarto presentation, but it does not work as expected:
|
Beta Was this translation helpful? Give feedback.
Answered by
mcanouil
Feb 19, 2023
Replies: 1 comment 1 reply
-
The column layout you are using is 50/50, thus it works as expected. ---
title: "Net Benefit"
format: revealjs
---
## Net Benefit
:::: {.columns}
::: {.column style="font-size: 50%;"}
$$
\begin{aligned}
\text{Net Benefit} = \frac{\text{TP}}{\text{N}} - \frac{\text{FP}}{\text{N}} * {\frac{{p_{t}}}{{1 - p_{t}}}}
\end{aligned}
$$
:::
::: {.column }
I love NB
::: |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
uriahf
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The column layout you are using is 50/50, thus it works as expected.
Your equation is simply overflowing on the second column.