Is it possible to display the box enclosing each latex object on the output?
For example, I have a word "LaTeX" in the input file.
On the output file, each character in the word must be enclosed by a visible box.
Of course I don't want to enclose each character with a \fbox.
You can use the following minimal code:
Code: Select all
\documentclass[a4paper]{article}
\usepackage{amsmath}
\pagestyle{empty}
\begin{document}
\setlength{\fboxsep}{0.3pt}
\setlength{\fboxrule}{0.01pt}
\fbox{\LaTeXe}
\end{document}
Thank you in advance.
Yuko.