mirror of
https://github.com/jgm/pandoc.git
synced 2026-07-11 03:47:20 +00:00
f7035d080c
+ Use `\phantomsection` and `\label` instead of `\hypertarget`. + Use `\hyperref` for LaTeX internal links, `\hyperlink` for beamer (since `\hyperref` doesn't seem to work). Closes #9022.
337 B
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\textwidth}
content
\end{column}
\begin{column}{0.84\textwidth}
content2
\end{column}
\end{columns}
\end{frame}