在用 LuaLaTeX 编写的手册中添加符号列表

在用 LuaLaTeX 编写的手册中添加符号列表

我目前正在使用 LuaLaTeX(UTF-8)编写手册,并希望在我的文档中包含以下符号,并在右侧添加描述:

在此处输入图片描述

目前,我正在更改 Word 文件中的布局并将图像作为图形复制到我的文档中,但我希望能够在我未来的文档的代码中写入此操作并能够更改参数。

有谁知道如何做到这一点,也许使用某个特定的包?

对于这个非常基本的问题,我深感抱歉,我对 LaTeX 还很陌生。

答案1

您还可以调整\fboxsep长度。

\documentclass[border=.1in]{standalone}

\setlength{\fboxrule}{2pt}

\begin{document}
\fbox{T} \fbox{PCR}
\fbox{\makebox[.5in]{wide}}
\fbox{\hspace{1em}wider\hspace{1em}} baseline text.
\end{document}

fbox 测试

您可以通过稍微重叠两个框来创建双框。 用于\vphantom强制两个框的高度完全相同。 A\strut也可以使用,但会增加下降符的空间。

\documentclass[border=.1in]{standalone}

\setlength{\fboxrule}{2pt}

\newcommand{\doublebox}[2]{\fbox{#1\vphantom{#2}}\hspace{-\fboxrule}\fbox{\vphantom{#1}#2}}

\begin{document}
\doublebox{Double}{Box}
\end{document}

双盒

以下代码提供所需的输出:

\documentclass{article}

\setlength{\fboxrule}{2pt}

\newcommand{\doublebox}[2]{\fbox{#1\vphantom{#2}}\hspace{-\fboxrule}\fbox{\vphantom{#1}#2}}

\begin{document}

\setarraylength

\begin{tabular}{cl}

\doublebox{AR}{1} & Amplification Reagent 1\\[0.5cm]
\fbox{T} & Taq DNA polymerase\\[0.5cm]
\fbox{UPM} & Universal PCR Mix\\[0.5cm]
\doublebox{PCR}{p7} & PCR p7 Primer Mix\\

\end{tabular}

在此处输入图片描述

相关内容