0

我正在尝试从 LaTeX Bundle 中的 TextMate 片段修改代码。这是代码:

\section{${1:section name}} % (fold)
\label{sec:${2:${1/\\\\\w+\{(.*?)\}|\\\\(.)|(\w+)|([^\w\\\\]+)/(?4:_:\L$1$2$3)/g}}}
${0:$TM_SELECTED_TEXT}
% section $2 (end)

我希望它也将 unicode 重音字符更改为非重音字符,例如:

a进入a

é进入e

í进入i

ó进入o

ú进入u

ñ进入n

这就是它的作用:

\section{Configuración de diseño} % (fold)
\label{sec:configuración_de_diseño}

% section configuración_de_diseño (end)

这就是我想要它做的,因为乳胶标签不支持这些字符:

\section{Configuración de diseño} % (fold)
\label{sec:configuracion_de_diseno}

% section configuracion_de_diseno (end)
4

1 回答 1

0

将标签的代码更改为此作品

\label{ssub:${2:${1/(\w+)(\W+$)?|\W+/${1:?${1:/asciify/downcase}:_}/g}}}

这是链接问题 #87

于 2014-09-14T16:19:52.967 回答