English 中文(简体)
我和Jupyter Markdown的希腊字母有矛盾
原标题:I m having an issue with Greek letters in Jupyter Markdown. Ideas on a fix?
I am doing some work in Jupyter Notebook which necessitates Greek letters. (mu, sigma, etc.). In code cells the mu followed by TAB works fine. In a markdown cell I expect either the lower or uppercase Greek letter, but when I hit TAB, the entire string of text shifts to the right as in a typical word processor. This is new behavior. I d like to fix this. print( α psyho disco β ) - #This works in a code cell. alpha psycho disco eta -#This doesn t work in a markdown cell Thanks for any assistance.
问题回答
In a markdown cell the Greek letters should be surrounded with the dollar sign, and will be displayed inline: $alpha$ psycho disco $eta$ You may use a double dollar sign at the beginning and the end of the Greek letter (or math equation) in order to display it centered and in a new line. Following is the beta letter: $$eta$$




相关问题
Citing the author of a blockquote using Markdown syntax

I am using the Symfony CMS and it uses Markdown for article writing. I need to do a blockquote of a quote from Benjamin Franklin and would like to have the quote followed by a citation beneath it, but ...

What markup language to store in a DB?

Related: How to store lightweight formatting (Textile, Markdown) in database? I want to store comment formatting in some markup language in our DB. However, we want to allow multiple formatting ...

Markdown vs. HTML in a CMS

I m working on a fairly large CMS-like app that includes a forum, wiki pages, etc. What whould you chose between Markdown and HTML? I m concerned about usability and the fact non-techie people will ...

PHP Markdown Question

I m using http://michelf.com/projects/php-markdown/ for my markdown library and my question is that if i edit and remove the functionality would this work Because the users that i have, are ...

markdown to HTML with customised WMD editor

For my application I customized slightly the way WMD behaves so when user enters empty lines, these are reflected in HTML output as <br /> s. Now I came to a point when I should store it ...

Python Markdown: Markdown Inside HTML Blocks

Is there an extra for Python Markdown that supports Markdown inside HTML block elements, e.g. div, p i.e. is there a way to convert this: <div id="content"> [Google](http://www.google.com) ...

热门标签