با سلام خدمت دوستان گرامی
هنگامیکه کد1 را اجرا میکنم فلوچارت مودر نظر به درستی کشیده می شود اما در کد 2 اروری تحت عنوان
SyncTeX: Can't rename Inteligent.synctex(busy) to Inteligent.synctex
می دهد.(قابل ذکر است که نام فایل inteligent می باشد.)
چرا چنین اتفاقی می افتد؟
کد 1 :
\documentclass{article}
\usepackage[latin1]{inputenc}
\usepackage{tikz}
\usetikzlibrary{shapes,arrows}
\usepackage{xepersian}
\settextfont{XB Zar}
\begin{document}
\pagestyle{empty}
\tikzstyle{block} = [rectangle, draw,text width=5em, text centered, minimum height=4em]
\tikzstyle{line} = [draw, -latex']
\begin{tikzpicture}[node distance = 2cm, auto]
\node [block] (init) {این یک مثال است};
\node [block, below of=init] (identify) {identify candidate models};
\path [line] (init) -- (identify);
\end{tikzpicture}
\end{document}
کد 2
\documentclass{article}
\usepackage[latin1]{inputenc}
\usepackage{tikz}
\usetikzlibrary{shapes,arrows,chains}
\usepackage{flowchart}
\usepackage[sort&compress]{natbib}
\setcitestyle{square}
\usepackage{amsthm,amssymb,amsmath}
\usepackage{hyperref}[2010/09/11]
\theoremstyle{defenition}
\newtheorem{definition}{تعریف}[section]
\theoremstyle{theorem}
\newtheorem{theorem}{قضیه}[section]
\newtheorem{lemma}{لم}[section]
\newtheorem{proposition}{گزاره}[section]
\newtheorem{corollary}{نتیجه}[section]
\newtheorem{remark}{ملاحظه}[section]
\usepackage{xepersian}
\settextfont{XB Zar}
\setdigitfont{Persian Modern}
\begin{document}
\section{فلوچارت الگوریتم شیر}
\pagestyle{empty}
\tikzstyle{block} = [rectangle, draw,text width=5em, text centered, minimum height=4em]
\tikzstyle{line} = [draw, -latex']
\begin{tikzpicture}[node distance = 2cm, auto]
\node [block] (init) {این یک مثال است};
\node [block, below of=init] (identify) {identify candidate models};
\path [line] (init) -- (identify);
\end{tikzpicture}
\end{document}