Django 模板:begin-math/end-math 缺少符号错误

Django 模板:begin-math/end-math 缺少符号错误

我在 LaTeX 中编写了以下模板:

% Projet   : INFOREFLEX_GENER_HTML
% Nom      : index_cellules.tex
% Auteur   : Emmanuel DUVSHANI
% Fonction : template pour l'affichage des cellules travaillant sur les applications PSA des périmètres ASSP et VTIS, de production et de pré-production
%            Le template est écrit en TeX, et est censé être converti et affiché en PDF.
\documentclass{book}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[french]{babel}
\usepackage{color, colortbl}
\usepackage{hyperref}
\usepackage[margin=0.25in]{geometry}
\hypersetup{
    colorlinks=true,
    linkcolor=blue,
    filecolor=magenta,      
    urlcolor=cyan,
}
\title{INFOREFLEX_GENER_HTML_CELLULES, version 1.0 (23/07/2019)}
\author{OPEN Emmanuel Duvshani}
\date{\today}
\begin{document}
\maketitle
\bigskip
(Date de l'import des données en base : {{ dateDernierExport }})
\bigskip
\newcolumntype{y}{>{\columncolor{yellow}}l}
{% for cellule in listeCellules %}
    \hypertarget"{"{{ cellule.dpt_im }}"}{"{{ cellule.dpt_im }}"}"
    \bigskip
    \begin{left}
    \begin{tabular}{ | y | }
    \hline
    {% with utilisateur=cellule.utilisateurs.all %}
        \hyperlink"{"http://annuaire-entreprise.inetpsa.com/?action=exec_recherche_personne&identifiant={{ utilisateur.cod_user }}"}{"{{ utilisateur.cod_user }}"}"-{{ utilisateur.lib_prenom }} {{ utilisateur.lib_nom_usuel }}
        \hline
    {% endwith %}
    \end{tabular}
    \end{left}
    \bigskip
{% endfor %}
\end{document}

每次我尝试使用此模板运行应用程序时,都会收到以下错误消息:

TexError at /inforeflex_gener_html/cellules

! Missing $ inserted.
<inserted text> 
$
l.31 \bigskip
I've inserted a begin-math/end-math symbol since I think
you left one out. Proceed, with fingers crossed.

Request Method:     GET
Request URL:    http://localhost:8000/inforeflex_gener_html/cellules
Django Version:     2.2.2
Exception Type:     TexError
Exception Value:    

! Missing $ inserted.
<inserted text> 
$
l.31 \bigskip
I've inserted a begin-math/end-math symbol since I think
you left one out. Proceed, with fingers crossed.

Exception Location:     C:\Users\edu04718\AppData\Local\Programs\Python\Python37-32\lib\site-packages\django_tex\core.py in run_tex, line 26
Python Executable:  C:\Users\edu04718\AppData\Local\Programs\Python\Python37-32\python.exe
Python Version:     3.7.3

根据我的理解,这意味着我使用了数学模式标签,该标签应该放在美元符号之间。但我看不到我使用了哪个数学模式标签。

相关内容