LyX에서 Hyperref 사용 - PDFLaTeX 히브리어

LyX에서 Hyperref 사용 - PDFLaTeX 히브리어

지난 몇 년 동안 저는 PDFLaTeX 형식의 히브리어 기사 문서 클래스와 함께 히브리어로 LyX를 사용해 왔습니다. 최근에 Hyperref 패키지를 발견했는데, 이제 한 번의 클릭으로 히브리어 이외의 모든 기사 문서에 클릭 가능한 링크가 생겼습니다.

히브리어 기사 문서로 동일한 작업을 수행하려고 하면 컴파일 오류가 발생합니다.

pdfTeX error (ext4): pdf_link_stack empty, \pdfendlink used without \pdfstart

이 문제를 해결하고 클릭 가능한 링크로 컴파일하고 문서화하는 것이 가능합니다.없이XeTeX나 다른 형식으로 전환하시겠습니까?

저는 Windows 7을 사용하고 있습니다. 미리 감사드립니다.

LyX 파일:http://www.filedropper.com/newfile1그리고http://www.filedropper.com/newfile1_1

TeX 텍스트:

%% LyX 2.1.3 created this file.  For more info, see http://www.lyx.org/.
%% Do not edit unless you really know what you are doing.
\documentclass[english,hebrew]{article}
\usepackage{lmodern}
\usepackage{courier}
\usepackage[T1]{fontenc}
\usepackage[utf8x]{inputenc}
\usepackage[a4paper]{geometry}
\geometry{verbose,tmargin=1in,bmargin=1in,lmargin=1in,rmargin=1in,headheight=0.5in,headsep=0.5in,footskip=0.5in}
\setlength{\parskip}{\medskipamount}
\setlength{\parindent}{0pt}
\usepackage{babel}
\usepackage{float}
\usepackage{amsmath}
\usepackage[unicode=true,pdfusetitle,
 bookmarks=true,bookmarksnumbered=false,bookmarksopen=false,
 breaklinks=false,pdfborder={0 0 1},backref=false,colorlinks=false]
 {hyperref}
\usepackage{breakurl}

\makeatletter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Textclass specific LaTeX commands.
\usepackage{theorem}
\theorembodyfont{\upshape}
\newtheorem{theorem}{\R{משפט}}[section]
\AtBeginDocument{\make@lr\thetheorem}

% The following chunk fixes export with XeTeX.
% It is needed because polyglossia is used by default
% and \make@lr is only defined by babel.
\@ifundefined{make@lr}
{\def\make@lr#1{\begingroup
    \toks@=\expandafter{#1}%
    \edef\x{\endgroup
  \def\noexpand#1{\noexpand\@number{\the\toks@}}}%
  \x}}{\relax}

\@ifundefined{date}{}{\date{}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.
\usepackage{braket}
\usepackage{tensind}
\tensordelimiter{?}
\usepackage{culmus}

\makeatother

\begin{document}

\title{כותרת -- \L{Title}}

\maketitle
\tableofcontents{}

\newpage{}


\part{חלק -- \L{Part}}


\section{נושא -- \L{Section}}


\subsection{תת-נושא -- \L{Subsection}}
\end{document}

관련 정보