-
请问作者,硕士毕业论文overleaf模板中,符号对照表与缩略语对照表中行距大于20磅,这个问题该怎么解决 |
Beta Was this translation helpful? Give feedback.
Answered by
note286
May 24, 2024
Replies: 2 comments 2 replies
-
你可以设置 \xdusetup{
customize-los=true,
customize-loa=true
} 然后自行任意发挥。 |
Beta Was this translation helpful? Give feedback.
0 replies
-
目前的实现可能有点问题,暂时没有精力更新,可以使用如下代码来暂时解决: \documentclass{xdupgthesis}
\xdusetup{
customize-los=true,
customize-loa=true,
los={los.tex},
loa={loa.tex},
}
\NewTblrTheme{losloatheme}{\SetTblrTemplate{head,foot}{empty}}
\begin{document}
\end{document} % los.tex
\begin{tblr}[long,label=none,entry=none,theme=losloatheme]{columns={valign=m,co=-1},rows={halign=l},cells={font=\rmfamily\zihao{-4}\setlength{\baselineskip}{15pt}},abovesep=0pt,belowsep=4.3415pt}
符号 & 符号名称 \\
... & ... \\
... & ... \\
... & ... \\
\end{tblr} % loa.tex
\begin{tblr}[long,label=none,entry=none,theme=losloatheme]{columns={valign=m,co=-1},rows={halign=l},cells={font=\rmfamily\zihao{-4}\setlength{\baselineskip}{15pt}},abovesep=0pt,belowsep=4.3415pt}
缩略语 & 英文全称 & 中文对照 \\
... & ... & ... \\
... & ... & ... \\
... & ... & ... \\
\end{tblr} 其中的 |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
note286
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
目前的实现可能有点问题,暂时没有精力更新,可以使用如下代码来暂时解决: