Ho questo modello Django che uso per generare file LaTeXCome posso sfuggire ai caratteri speciali LaTeX all'interno dei modelli di django?
\documentclass[11pt]{report}
\begin{document}
\begin{table}
\centering
\begin{tabular}{lcr}
\hline
{% for col in head %}
\textbf{ {{col}} }
{% if not forloop.last %}
&
{% endif %}
{% endfor %}
\\
\hline
{% for row in table %}
{% for cell in row %}
{% if not forloop.last %}
&
{% endif %}
{% endfor %}
\\
{% endfor %}
\hline
\end{tabular}
\caption{Simple Phonebook}
\label{tab:phonebook}
\end{table}
\end{document}
Ma il mio non di colonne sono molto grandi in modo che possano contenere caratteri speciali in loro. Sto ottenendo errori durante la generazione di file pdf.
Come posso sfuggire a tutto il testo in tutte le colonne?
non dimenticare di includere anche r '\ textgreater' r '\ textless' – blueberryfields
o r '\ ensuremath {<}' e r '\ ensuremath {>}' – sastanin