1
  • I want to use the ocg-p package in a document.
  • The document should be compiled with luatex.
  • It seems as if the ocg-p package only works with pdflatex and xelatex.
  • Q: Is there a package similar to the ocg-p package that works with luatex?

enter image description here

(CTAN screenshot)


enter image description here

(Overleaf settings)


\documentclass{beamer}

\usepackage{ocg-p}

\begin{document}

\section{Section 1}
\begin{frame} \frametitle{\insertsection}

\end{frame}

\end{document}

(MWE)


l.30   \ifnum\pdftexversion
                         <120
The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined.

! Missing number, treated as zero. <to be read again> < l.30 \ifnum\pdftexversion< 120 A number should have been here; I inserted 0'. (If you can't figure out why I needed to see a number, look upweird error' in the index to The TeXbook.)

(Error message)


1 Answers1

0

Stupid me... the ocgx2 package does precisely that.

\documentclass{beamer}

\usepackage{ocgx2} % <-- Modified!

\begin{document}

\section{Section 1}
\begin{frame} \frametitle{\insertsection}

\end{frame}

\end{document}

enter image description here