在乳胶中找不到符号

在乳胶中找不到符号

我是 Latex 新手,需要表达以下符号:

&, &&, ^, | , || , <, <=, >, >= , == , != , %

当我以这种方式写入时,文档上没有任何反应。请帮忙。

此致,

答案1

符号可以以逐字模式设置,例如:

\documentclass{article}

\begin{document}
\begin{tabular}{ll}
  \verb|&|  & bitwise and\\
  \verb|&&| & logical and\\
  \verb|^|  & bitwise xor\\
  \verb+|+  & bitwise or\\
  \verb+||+ & logical or\\
  \verb|<|  & less than\\
  \verb|<=| & less than or equal to\\
  \verb|>|  & greater than\\
  \verb|>=| & greater than or equal to\\
  \verb|==| & equal to\\
  \verb|!=| & not equal to\\
  \verb|%|  & modulo\\
  \verb|~|  & bitwise not\\
\end{tabular}
\end{document}

结果

程序代码也可以通过包来设置列表

答案2

您应该将其放在方程环境中,例如:

\begin{equation} 
 a <= b | c
\end{equation}

在这种情况下,您的等式会得到一个数字。为避免这种情况,请执行以下操作:

\begin{equation*} 
 a <= b | c
\end{equation*}

但是如果您想在文本中写一个简单的%,您可以这样做:

\%

答案3

帮助自己指导我在上面的评论中链接了,这是您可以渲染的符号列表,可以在数学分隔符内或外渲染,不需要 AMS-LaTeX 包或任何其他包。以下代码

\documentclass{article}

\begin{document}

a \& b \% c \textasciicircum{} d

\[
e \vert f | g < h \le i \ge j > k \ne l = m
\]

Also: $\|n\|$.

The following unescaped percent produces a comment % indeed this text does not show

\end{document}

生成:

输出的屏幕截图

查看手册,了解如何使用几个专用包提供的更具体或更复杂的符号。

答案4

你可以尝试http://detexify.kirelabs.org/classify.html- 只需绘制您正在寻找的符号,那里的小程序就会为您提供所需的包(如果需要)以及该符号的代码......

相关内容