Acro 包:使用衬线字体和对齐方式?

Acro 包:使用衬线字体和对齐方式?

我正在使用scrbook并且想要衬线字体用于章节标题等

当我使用acro包时,首字母缩略词不会以类似于节标题的衬线字体打印,如下所定义:

\addtokomafont{disposition}{\rmfamily} 

有人能帮我一下吗,这样缩写词就能用相同的衬线字体打印出来,最好还能告诉我,如何对齐首字母缩略词的长形式到使用的最长的首字母缩略词?

梅威瑟:

\documentclass[paper=A4,
               pagesize,
               DIV=calc,
               openany,
               BCOR=8mm,
               numbers=noenddot]
              {scrbook}

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{palatino}
\usepackage{acro}

\addtokomafont{disposition}{\rmfamily}                      

\DeclareAcronym{OASIS}{ 
    short = OASIS, 
    long = Organization for the Advancement of Structured Information Standards}

\DeclareAcronym{SOAP}{ 
    short = SOAP, 
    long = Simple Object Access Protocol}

\begin{document}    
\acuseall

\printacronyms[]

\end{document}

答案1

我刚刚意识到如何实现这一目标:

\usepackage{longtable}
\acsetup{list-style=longtable}

相关内容