找不到文件错误

找不到文件错误

无法再找到该文档的 pdf 文件,输入以下内容后,pdf 无法编译

\documentclass[a4paper, 
    pointlessnumbers, 
    %draft,
    parskip=half,
    automark
        ]{scrartcl}

\setlength{\parindent}{0pt} 

\usepackage[a4paper, left=2.2cm, right=2.2cm, top=2.5cm, bottom=2.5cm,]{geometry}
\usepackage{scrpage2}
\clearscrheadfoot
\pagestyle{scrheadings}

\usepackage[ngerman]{babel}


\usepackage[pdftex]{graphicx,color}

\usepackage[utf8]{inputenc}

\usepackage{amssymb,amsmath,amsthm, amsfonts} 
\usepackage{latexsym}
\usepackage[decimalsymbol=comma]{siunitx} 


\usepackage{booktabs}
\usepackage{tabulary}
\usepackage[dvipsnames]{xcolor} 
\usepackage[centerlast,small,sc]{caption}
\usepackage{here}
\usepackage{siunitx}

\usepackage{titling}

\usepackage{subfigure}


\usepackage{hyperref}


    \renewcommand{\i}{\mathrm{i}}
    \newcommand{\e}{\mathrm{e}}
    \newcommand{\diff}{\mathrm{d}}
    \newcommand{\figref}[1]{Abb. \ref{#1}} 

    \newcommand{\ImNew}{\operatorname{Im}}
    \newcommand{\ReNew}{\operatorname{Re}}
    
    \newcommand{\xdot}{\cdot}
    \newcommand{\funof}[1]{{\color{gray}(#1)}}
    
%Titelseite
\title{m}
\author{b}

%Dokument
\begin{document}
\setcounter{page}{0}
\maketitle
\thispagestyle{empty} % Keine Seitenzahl auf Titelseite
\ofoot{\upshape\thepage}

\clearpage
%Inhaltsverzeichnis
%\thispagestyle{empty}
\tableofcontents

\clearpage
%Hauptdokument
\pagenumbering{arabic}
\ihead{\upshape\scriptsize \leftmark}
\ohead{\upshape\scriptsize \thetitle}
%\ifoot{\upshape \scriptsize}
\ofoot{\upshape\thepage}

\begin{equation}
tan\phi=\frac{{\frac{1}{\omega L_M}+\frac{\omega L_{\sigma}\gamma^2 I_2^2}{U_1^2}}{\frac{1}{R_{FE}}+
+\frac{\sqrt{\frac{U_1^2}{\gamma^2 I_2^2}-\omega^2  L_{\sigma}^2}\gamma^2 I_2^2}{U_1^2}}

\label{eq:80}
\end{equation}

Dies ist äquivalent zu 

\begin{equation}
\phi=arctan(Gl.\ref{eq:80})
\label{eq:5}
\end{equation}

--------------------------

?ab hier eigene Werte eingeben:
In dem Fall ist\\
A=$\omega L_M=2\pi f L_M=2\pi$


\end{document}

答案1

您的文档有几个错误,您需要解决这些错误才能进行编译。

1. 替换已弃用的scrpage2软件包

scrpage2序言中引用的软件包 ( )\usepackage{scrpage2}已被弃用,应替换为\usepackage{scrlayer-scrpage}。根据包装文档

该包已弃用,不应再使用。您可以非常轻松地用英语和德语 KOMA -Script 指南中记录的 KOMA -Script 包 scrlayer-scrpage 替换它。

这个问题对更换scrpage2包装有额外的建议:LaTeX 错误:未找到文件“scrpage2.sty”

2. 使用\sisetup代替来siunitx控制小数格式

[decimalsymbol=comma]不是 的有效选项siunitx。要更改小数格式,请使用以下\sisteup命令:使用 siunitx 将逗号用作小数点标记(西班牙语用法)

您还会导入siunitx多次,因此您应该删除多余的引用,然后\usepackage{siunitx}按照相应的\sisetup命令操作。

3. 在公式中使用正确数量的括号

标为 80 的等式没有足够的括号来正确括起等式。有很多问题,所以我真的不知道你在那里想做什么,但一种解决问题的方法是将每组括号分成单独的缩进行,这样你就可以确认每个项都正确括起来了。特别是我会检查每个分数是否有两组括号(\frac{}{}),以及根号下的项是否括起来(\sqrt{})。

相关内容