我想在我正在写的书中包含“pythonhighlight”包。这是导致包含错误的代码:
\documentclass{article}
\usepackage{pythonhighlight}
\begin{document}
\begin{python}
eta = 0.1 # Learning rate
n_iterations = 1000
n = 100
theta = np.random.randn(2,1) # Random initialization
for iteration in range(n_iterations):
gradients = 2/n * X_b.T.dot(b.dot(theta) - y)
theta = theta - eta * gradients
\end{python}
\end{document}
错误是:
! Missing \endcsname inserted.
<to be read again>
\protect
l.5 \begin{python}
? X
No pages of output.
我研究过这个错误,通常的答案是删除辅助文件。这个解决方案在这里不起作用。