—> Diese Seite ist noch nicht fertig!!

Quotation marks

It is recommended that you use the standard double quotation marks for quotation while writing content in OneNote. For more details see Quotation marks

Nonbreaking space

There are two options to insert a nonbreaking space:

  1. Use the tilde character “~” with the background color yellow for nativ LaTeX code.
  2. Open MS Word, press Ctrl-Shift-Spacebar and copy/paste this character in OneNote. During the conversion process, OneLatex will convert it to a “~”.

Soft line break

There are two options to insert a soft line break:

  1. Use two backslash characters “\\” with the background color yellow for nativ LaTeX code.
  2. Insert a soft line break in OneNote by pressing Shift and Enter. During the conversion process, OneLatex will convert it to a “\\”.

Gewisse Sonderzeichen werden konvertiert:

function replaceUmlautsandDeleteSC(str) {
  return str
    .replace(/\\u00df/g, "ss")
    .replace(/\\u00e4/g, "ae")
    .replace(/\\u00f6/g, "oe")
    .replace(/\\u00fc/g, "ue")
    .replace(/\\u00c4/g, "Ae")
    .replace(/\\u00d6/g, "Oe")
    .replace(/\\u00dc/g, "Ue")
    .replace(/[^\\w\\s]/gi, "");
}