我有一些xml文本作为纯文本插入到文档中。我直接插入但它给出了奇怪的符号。我怎么能避免这种情况?
我要添加的XML:
\begin{tabular}{|c|}
<table>
<tr>
<td> Title and Logo</td>
</tr>
<tr>
<td> left Column </td>
<td> main table </td>
</tr>
</table>
\end{tabular}
输出如下:
¡table¿ ¡tr¿ ¡td¿ Title and Logo¡/td¿ ¡/tr¿ ¡tr¿ ¡td¿ left Column ¡/td¿ ¡td¿ main table ¡/td¿ ¡/tr¿ ¡/table
基本上我想在表格中添加HTML代码。我怎么能这样做?
答案 0 :(得分:33)
您是否尝试过verbatim
环境?
\begin{verbatim}
Your text here.
\end{verbatim}
在不知道你的“奇怪符号”是什么的情况下,很难为你的问题提出解决方案。
更新:为了在表格单元格中嵌入verbatim
环境,您需要将列更改为段落列(使用p
,{{1 },或m
作为列说明符); e.g。
b
有关详细信息,请参阅Wikibooks。