Files
John MacFarlane 7e7735bb6b Use \linewidth instead of \columnwidth or \textwidth...
for resizing figures, table cells, etc. in LaTeX.  `\linewidth`,
unlike the others, is sensitive to indented environments like
lists.

Closes #9775.
2024-05-31 15:03:06 -06:00

337 B

% pandoc -t beamer
# title

:::: {.columns}
::: {.column width="8%"}
content
:::
::: {.column width="84%"}
content2
:::
::::
^D
\begin{frame}{title}
\phantomsection\label{title}
\begin{columns}[T]
\begin{column}{0.08\linewidth}
content
\end{column}

\begin{column}{0.84\linewidth}
content2
\end{column}
\end{columns}
\end{frame}