Last active
March 8, 2020 14:54
-
-
Save munepi/ae921866878c7aa112df96d50d5708a5 to your computer and use it in GitHub Desktop.
Testing to use TeX-style escape sequences beginning with a YEN SIGN "¥" (Unicode U+00A5) character: This example is only available for LuaLaTeX or XeLaTeX.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%#!lualatex | |
%% We remark that this example is only available for LuaLaTeX or XeLaTeX. | |
\catcode`¥=0 %<= yen sign 0x00A5 | |
\let¥¥=\\ | |
¥documentclass{article} | |
¥begin{document} | |
Hello {¥LaTeX} world! | |
¥end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment