How to detect LuaLaTex inside my .tex file and exclude bits and pieces conditionally
Use the ifluatex package.
\documentclass{article}
\usepackage{ifluatex}
\begin{document}
\ifluatex
hello
\else
goodbye
\fi
\end{document}
Use the ifluatex package.
\documentclass{article}
\usepackage{ifluatex}
\begin{document}
\ifluatex
hello
\else
goodbye
\fi
\end{document}