答案1
使用等宽字体,将小写字母和大写字母的宽度设置为相同:
\documentclass{article}
\begin{document}
\noindent
{\ttfamily
a b c d e \\
E D C B A
}
\end{document}
或者,使用以下方式排列字母tabular
:
\documentclass{article}
\begin{document}
\noindent
{\ttfamily\begin{tabular}{ *{5}{c} }
a & b & c & d & e \\
E & D & C & B & A
\end{tabular}}
\end{document}
后一种方法适用于非等距字体,您可以调整\tabcolsep
字母间距。