Fonts & Character SetsMissing symbol

Information and discussion about fonts and character sets (e.g. how to use language specific characters)
Post Reply
User avatar
svend_tveskaeg
Posts: 478
Joined: Sun Jul 12, 2009 5:31 am

Missing symbol

Post by svend_tveskaeg »

Hi (La)TeX friends.

I have tried to find the LaTeX command for the `o' like symbol in the attached picture without luck. (Yes, I have looked at the Comprehensive LaTeX Symbol List.) Does anyone know what the command is?

Thank you in advance.
Attachments
symbol.jpg
symbol.jpg (1.01 KiB) Viewed 2175 times
Last edited by svend_tveskaeg on Sun Jun 13, 2010 11:42 am, edited 1 time in total.
``In the game of chess, you can never let your adversary see your pieces.''
-- Zapp Brannigan, Futurama (season 1, episode 4)

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
localghost
Site Moderator
Posts: 9201
Joined: Fri Feb 02, 2007 12:06 pm

Missing symbol

Post by localghost »

You are searching a lowercase »o« in Gothic type provided by amssymb. This type face is also called German type, black letter or Fraktur.

Code: Select all

\documentclass[11pt,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amssymb}

\begin{document}
  \[
    \mathfrak{o}_K
  \]
\end{document}

Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes[/size]

¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
User avatar
svend_tveskaeg
Posts: 478
Joined: Sun Jul 12, 2009 5:31 am

Re: Missing symbol

Post by svend_tveskaeg »

Thank you very much!
``In the game of chess, you can never let your adversary see your pieces.''
-- Zapp Brannigan, Futurama (season 1, episode 4)
Post Reply