大概就是,我想实现一个position_of_last_character的命令,它可以打印出当前命令执行前最后一个字符在tex源码中的位置:在源码中的第几行,在该源码行的第几列,一个简单的例子如下,我知道tex中有inputlineno命令可以获取命令在tex中的源码行,不知道有没有类似命令可以获取在tex中的列数。
\documentclass{minimal}
\newcommand \showposition {\position_of_last_character}
\begin{document}
You are now at\showposition.
This paragraph starts at\showposition, and
some more text.
\end{document}