blob: 0cdae525b588f13caee5f46e6f96df57da2cf2b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
% This file is public domain
% If you want to use arara, you need the following directive:
% arara: pdflatex: { synctex: on }
\documentclass{article}
\usepackage{mfirstuc-english}
\begin{document}
\makefirstuc{abc}.
\makefirstuc{{\em abc}}.
\makefirstuc{\emph{abc}}.
\makefirstuc{\ae bc}.
\makefirstuc{{\ae}bc}.
\newcommand{\abc}{abc}%
\xmakefirstuc{\abc}.
\capitalisewords{the wind in the willows}
\capitalisewords{a book of rhyme.}
\MFUclear
\capitalisewords{the wind in the willows}
\capitalisewords{a book of rhyme.}
\capitalisewords{a book\space of rhyme.}
\newcommand{\mytitle}{a book\space of rhyme.}
\capitalisewords{\mytitle}
\xcapitalisewords{\mytitle}
\end{document}
|