5

enter image description here

Hi. I've compiled a Persian language beamer file by both luapersian and persian babel package using LuaLaTex, and in both I've the same problem in pdf bookmark as shown in the figure (some strange characters are shown instead of correct characters).

LaRiFaRi
  • 43,807
user49875
  • 379

1 Answers1

10

Very likely you need option unicode for hyperref. It can be given the following way:

\documentclass[hyperref={unicode}]{beamer}

Alternatively (for other classes that load hyperref and do not have special options for specifying package options of loaded packages):

\PassOptionsToPackage{unicode}{hyperref}
\documentclass{beamer}
Heiko Oberdiek
  • 271,626