我正在尝试从 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)