How to produce a character like 𝕜 (the nonexisting \mathbb{k}) in a TeX file?
- 2You have tagged the question unicode-math if you are using that package it should work as unicode math fonts have lower case double struck.David Carlisle– David Carlisle2015-10-21 13:16:33 +00:00Commented Oct 21, 2015 at 13:16
- Duplicate of tex.stackexchange.com/questions/443080/…user202729– user2027292024-10-16 13:59:48 +00:00Commented Oct 16, 2024 at 13:59
Add a comment |
1 Answer
You tagged this unicode-math, it should just work:
\documentclass{article} \usepackage{unicode-math} \begin{document} $𝕜$ (the nonexisting $\mathbb{k}$) \end{document} - 4Thanks, I realized that \Bbbk with
amssymbpackage can also do it.Name– Name2015-10-21 13:40:30 +00:00Commented Oct 21, 2015 at 13:40
