我收到了问题标题中提到的错误。你能帮助我吗?
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[siunitx]{circuitikz}
\pagestyle{empty}
\begin{document}
\begin{tabular}{ l c c c r }
$R_L (\Omega)$ &$ V_L (V)$ & $I_L (mA)(experimental)$ & $I_L (mA)(actual)$ & Percent Error (%)\\
$\infty$ & 4.99 & 0 &0 & 0 \\
980 &3.74 & 3.8 & 3.91 & 2.81\\
320 & 2.48 & 7.6 & 7.79 & 2.45\\
99.4 & 1.16 & 11.7&11.89 & 1.60 \\
0 & 0 & 15.1 & 15.5 & 2.58 \\
\end{tabular} \\
\end{document}
答案1
您有%
没有\%
。这是一个快速解决方案。
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[siunitx]{circuitikz}
\pagestyle{empty}
\begin{document}
\begin{tabular}{ l c c c r }
$R_L (\Omega)$ &$ V_L (V)$ & $I_L (mA)(experimental)$ & $I_L (mA)(actual)$ & Percent Error (\%)\\
$\infty$ & 4.99 & 0 &0 & 0 \\
980 &3.74 & 3.8 & 3.91 & 2.81\\
320 & 2.48 & 7.6 & 7.79 & 2.45\\
99.4 & 1.16 & 11.7&11.89 & 1.60 \\
0 & 0 & 15.1 & 15.5 & 2.58
\end{tabular}
\end{document}
作为参考,请记住以下escape
引用自的特殊字符综合 LaTeX 符号列表。