blob: 22522a0494209a668bdca06db6b7e92ae3e3f1ef (
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
|
% This file is public domain
% If you want to use arara, you need the following directive:
% arara: pdflatex: { synctex: on }
\documentclass{article}
\usepackage{mfirstuc}
\begin{document}
\makefirstuc{abc}.
\makefirstuc{{\em abc}}.
\makefirstuc{\emph{abc}}.
\makefirstuc{\ae bc}.
\makefirstuc{{\ae}bc}.
\newcommand{\abc}{abc}%
\xmakefirstuc{\abc}.
\capitalisewords{a book of rhyme.}
\capitalisewords{a book\space of rhyme.}
\newcommand{\mytitle}{a book\space of rhyme.}
\capitalisewords{\mytitle}
\xcapitalisewords{\mytitle}
\end{document}
|