错误“文件未找到”

错误“文件未找到”

我正在为我的学生编写一系列练习(阿拉伯语),Texmaker 一直告诉我“文件未找到”。让我困惑的是,当我编译没有正文(只有前言)的代码时,它编译时没有任何错误。然而,当我在正文中写一些东西时,它显示错误。顺便说一下,我使用的是 XeLaTeX。这是我编译的代码:

\documentclass[12pt,a4paper]{article}
\usepackage[top=0.9cm, bottom = 1.2 cm, right=1 cm, left= 0.8cm]{geometry}
\usepackage{amssymb,mathtools,amsthm}
\usepackage{fourier}
\usepackage{xcolor}
\usepackage{multicol}
\renewcommand{\columnseprule}{1pt}
%\renewcommand{\columnseprule}{1.5pt}
\usepackage{polyglossia}
\setdefaultlanguage[calendar=gregorian,numerals=maghrib]{arabic}
\newfontfamily\arabicfont[Script=Arabic,Scale=1]{Amiri}
\newfontfamily\arabicfontsf[Script=Arabic,Scale=1]{Amiri}

\usepackage{romannum}

\makeatletter
\newcommand*{\rom}[1]{\expandafter\@slowromancap\romannumeral #1@}
\makeatother
%======================================================
\newtheoremstyle{mystyle}
{\topsep}% espace avant
{\topsep}% espace après
{\upshape}% police du corps du théorème
{}% indentation (vide pour rien, \parindent)
{\bfseries\sffamily}% police du titre du théorème
{ :}% ponctuation après le théorème
{\newline}% après le titre du théorème (espace ou \newline)
{%
 % علق الأسطر 25 و 26 و 28
\rule[0.5\baselineskip]{0.5\textwidth}{1pt}%
\newline\fcolorbox{black}{gray!20}{%
\thmname{#1}\thmnumber{ \textup{#2}}\thmnote{ \textnormal{(#3)}}%
}%
\medskip%
}% spécifications du titre

\theoremstyle{mystyle}
\newtheorem{exo}{تمرين}
%======================================================

\title{سلسلة التمارين: المتتاليات العددية}
\author{طارق عسيلة}
\date{}

\begin{document}
\begin{center}
\bfseries\sffamily\Large سلسلة التمارين: المتتاليات العددية \\
\large الثالثة ثانوي - شعبة آداب وفلسفة + لغات أجنبية
\end{center}
\textbf{السنة الدراسية: 2020 - 2021} \hfill \textbf{من إعداد: طارق عسيلة}
\begin{multicols*}{2}

\end{multicols*}
\end{document} 

这是我的未编译的代码:

\documentclass[12pt,a4paper]{article}
\usepackage[top=0.9cm, bottom = 1.2 cm, right=1 cm, left= 0.8cm]{geometry}
\usepackage{amssymb,mathtools,amsthm}
\usepackage{fourier}
\usepackage{xcolor}
\usepackage{multicol}
\renewcommand{\columnseprule}{1pt}
%\renewcommand{\columnseprule}{1.5pt}
\usepackage{polyglossia}
\setdefaultlanguage[calendar=gregorian,numerals=maghrib]{arabic}
\newfontfamily\arabicfont[Script=Arabic,Scale=1]{Amiri}
\newfontfamily\arabicfontsf[Script=Arabic,Scale=1]{Amiri}

\usepackage{romannum}

\makeatletter
\newcommand*{\rom}[1]{\expandafter\@slowromancap\romannumeral #1@}
\makeatother
%======================================================
\newtheoremstyle{mystyle}
{\topsep}% espace avant
{\topsep}% espace après
{\upshape}% police du corps du théorème
{}% indentation (vide pour rien, \parindent)
{\bfseries\sffamily}% police du titre du théorème
{ :}% ponctuation après le théorème
{\newline}% après le titre du théorème (espace ou \newline)
{%
 % علق الأسطر 25 و 26 و 28
\rule[0.5\baselineskip]{0.5\textwidth}{1pt}%
\newline\fcolorbox{black}{gray!20}{%
\thmname{#1}\thmnumber{ \textup{#2}}\thmnote{ \textnormal{(#3)}}%
}%
\medskip%
}% spécifications du titre

\theoremstyle{mystyle}
\newtheorem{exo}{تمرين}
%======================================================

\title{سلسلة التمارين: المتتاليات العددية}
\author{طارق عسيلة}
\date{}

\begin{document}
\begin{center}
\bfseries\sffamily\Large سلسلة التمارين: المتتاليات العددية \\
\large الثالثة ثانوي - شعبة آداب وفلسفة + لغات أجنبية
\end{center}
\textbf{السنة الدراسية: 2020 - 2021} \hfill \textbf{من إعداد: طارق عسيلة}
\begin{multicols*}{2}
\begin{exo}
\rom{1} - لتكن ($U_n$) متتابية حيث: ($U_n = 3n +5$). أحسب الحدود $U_0, U_1, U_2$. 
\end{exo}
\end{multicols*}
\end{document} 

答案1

因此,在尝试了很多方法之后,我终于知道我的代码出了什么问题。我只需要删除

\usepackage{fourier}

来自我的序言。

相关内容