How do I represent and use some of the characters in the snippet below in Winedt 10.3 ?
I just want this for fun. I want a way how to create some of these characters
in a pdflatex compiler in WinEdt 10.3. Can someone give me a MWE of LaTeX file how to use them ? This a general question about how to use Unicode in WinEdt. Please note that I'm a complete beginner to LaTeX and Unicode especially. I need a MWE of the character 12110, not some lengthy answer.
Asked
Active
Viewed 97 times
1
user2925716
- 1,940

lualatex <filename>orxelatex <filename>just as you would withpdflatex, which's engine is called pdfTeX). – Skillmon Sep 28 '19 at 18:39\usepackage[utf8]{inputenc} \DeclareUnicodeCharacter{2014}{\dash}
\begin{document}
$\dash$
\end{document}
– user2925716 Sep 28 '19 at 18:45\DeclareUnicodeCharacterdeclares what to output if the Unicode character is read in the sources, not which macro to replace with a Unicode character. If you really want to use pdflatex you'd first have to find a font which has those symbols available and is usable under pdflatex. If you'd uselualatexinstead, you'd just load a system font (provided by your OS) and input the Unicode character directly into the sources. As long as the used font has the glyph it'll work. – Skillmon Sep 28 '19 at 19:06\documentclass{article}\DeclareUnicodeCharacter{2014}{\dash}\newcommand*\dash{\textemdash}\begin{document}—\end{document}. – Skillmon Sep 28 '19 at 19:16fontspecpackage is very easy:\documentclass{article} \usepackage{fontspec} \newfontface{\cuneiform}{Noto Sans Cuneiform} \begin{document} Cuneiform \cuneiform \end{document}– Cicada Sep 28 '19 at 22:49