如何重现此关键字概述?

如何重现此关键字概述?

我需要在 TeX 文档中描述关键字。它看起来应该类似于 C# 规范的关键字部分:

enter image description here

我需要一些关于如何实现这一点的建议。这是一个透明的表格吗?我可以在这里使用语法包吗?

答案1

正如我在评论中指出的那样,我使用\sffamily来设置关键字样式,并tabular使用 来排列关键字。如果需要固定宽度的字体,则\ttfamily可以使用 来代替\sffamily

\documentclass{article}
\begin{document}
\textit{keyword::} one of

{\centering\sffamily\tabcolsep=2.5ex\relax
\begin{tabular}{lllll}
abstract & as & base& bool& break\\
byte & case & catch & char & checked\\
class & const & continue & decimal & default\\
delegate & do & double & delse & enum\\
...&&&&\\
unsafe & ushort & using & virtual & void\\
volatile & while&&&
\end{tabular}\par}\smallskip

\noindent The following identifiers have special meaning in the syntactic grammar but they
are not keywords: \textsf{add} (\S17.7), \textsf{alias} (\S16.3),...
\end{document}

enter image description here

相关内容