LaTeX:每个字母后的空格

时间:2010-10-17 00:10:57

标签: latex

我想定义一个LaTeX命令,在每个字母后插入一个空格。

所以,如果我添加

\addSpaces{someText}

结果应该是

s o m e T e x t 

我怎么能实现这个目标?

背景:我希望每个字母都加下划线,但该字母应在字母之间分开:

s o m e T e x t 
_ _ _ _ _ _ _ _

NOT:
s o m e T e x t
_______________ 

2 个答案:

答案 0 :(得分:3)

您可以使用soul package进行下划线。对于单个单词,您可以使用我在下面编写的\addspaces宏。 (宏将吞噬单词之间的空格。一个简单的解决方法是使用\ quad来增加单词之间的空间。)

\documentclass{article}

\usepackage{soul}% provides underlining

\makeatletter% since we're using a macro containing @
\newcommand{\addspaces}[1]{%
  \@tfor\letter:=#1\do{%
    \ul{\letter}\space
  }%
}
\makeatother% resets @ to its original meaning

\begin{document}

% Works fine for single words
\addspaces{Spaces}

% Note that spaces in between words aren't preserved -- use \quad to add extra space.
\addspaces{Spaced\quad and\quad underlined.}

\end{document}

答案 1 :(得分:2)

对于文本的编程操作,我发现使用perltex定义perl函数来执行代码然后编译文档要容易得多。请在此处查看CTAN

这是一个快速而又脏的。

\documentclass{article}
\usepackage{perltex}

\perlnewcommand{\ulspace}[1]{
$input = shift;
$input =~ s/(\w)/\\underline\{\1\} /g;
return $input;
}

\begin{document}

\ulspace{Hello World}

\end{document}

编译:

perltex --latex=pdflatex myfile.tex