Bodenstreben Stix 2 werden nicht richtig angezeigt

Bodenstreben Stix 2 werden nicht richtig angezeigt
\documentclass[12pt]{article}
\usepackage{amsthm,amsmath,ragged2e,relsize,graphicx,bbm,mathtools}

\DeclareFontEncoding{LS1}{}{}
\DeclareFontEncoding{LS2}{}{\noaccents@}
\DeclareFontSubstitution{LS1}{stix2}{m}{n}
\DeclareFontSubstitution{LS2}{stix2}{m}{n}
\DeclareSymbolFont{xsymbols}{LS1}{stix2scr}{m}{n}
\DeclareSymbolFont{xlargesymbols}{LS2}{stix2ex}{m}{n}
\DeclareMathDelimiter{\lfloor}{\mathopen}{symbols}{"E2}{xlargesymbols}{"08}
\DeclareMathDelimiter{\rfloor}{\mathclose}{symbols}{"E3}{xlargesymbols}{"09}

\begin{document}
Why am i not getting $\lfloor x\rfloor$ properly?
\end{document}

Wenn ich pdflatex ausführe, erhalte ich keine Ausgabe des Bodensymbols. Ich füge die Ausgabe hier anBildbeschreibung hier eingebenBitte helfen Sie.

Antwort1

Du erhältst

Missing character: There is no <E2> in font cmsy10!
Missing character: There is no <E3> in font cmsy10!

weil Sie einen Tippfehler haben: symbolsstatt largesymbols. Vorausgesetzt, Sie möchten die Glyphen von STIX2 verwenden. Vergessen Sie nicht \makeatletterwegen \noaccents@.

\documentclass[12pt]{article}
\usepackage{amsthm,amsmath,ragged2e,relsize,graphicx,bbm,mathtools}

\makeatletter
%\DeclareFontEncoding{LS1}{}{}
\DeclareFontEncoding{LS2}{}{\noaccents@}
\makeatother
%\DeclareFontSubstitution{LS1}{stix2}{m}{n}
\DeclareFontSubstitution{LS2}{stix2}{m}{n}
%\DeclareSymbolFont{xsymbols}{LS1}{stix2scr}{m}{n}
\DeclareSymbolFont{xlargesymbols}{LS2}{stix2ex}{m}{n}
\DeclareMathDelimiter{\lfloor}{\mathopen}{xlargesymbols}{"E2}{xlargesymbols}{"08}
\DeclareMathDelimiter{\rfloor}{\mathclose}{xlargesymbols}{"E3}{xlargesymbols}{"09}

\begin{document}

I am getting $\lfloor x\rfloor$ properly.

\end{document}

Bildbeschreibung hier eingeben

Mit auch \lbraceund \rbrace(aber sie passen nicht wirklich zu anderen Schriftarten).

\documentclass{article}
\usepackage{amsthm,amsmath,ragged2e,relsize,graphicx,bbm,mathtools}

\makeatletter
\DeclareFontEncoding{LS1}{}{}
\DeclareFontEncoding{LS2}{}{\noaccents@}
\makeatother
\DeclareFontSubstitution{LS1}{stix2}{m}{n}
\DeclareFontSubstitution{LS2}{stix2}{m}{n}
\DeclareSymbolFont{stixoperators}{LS1}{stix2}{m}{n}
%\DeclareSymbolFont{stixsymbols}{LS1}{stix2scr}{m}{n}
\DeclareSymbolFont{stixlargesymbols}{LS2}{stix2ex}{m}{n}
\DeclareMathDelimiter{\lfloor}{\mathopen}{stixlargesymbols}{"E2}{stixlargesymbols}{"08}
\DeclareMathDelimiter{\rfloor}{\mathclose}{stixlargesymbols}{"E3}{stixlargesymbols}{"09}
\DeclareMathDelimiter{\lbrace}{\mathopen} {stixoperators}{"5E}{stixlargesymbols}{"0C}
\DeclareMathDelimiter{\rbrace}{\mathclose}{stixoperators}{"60}{stixlargesymbols}{"0D}

\begin{document}

I am getting $\lfloor x\rfloor$ properly.

I am getting $\lbrace x\rbrace$ properly.

I am getting $\{x\}$ properly.

\bigskip

$
\biggl\{\biggl\lfloor \Bigl\{\Bigl\lfloor \bigl\{\bigl\lfloor \{\lfloor
%
\biggl\rfloor\biggl\} \Bigl\rfloor\Bigl\} \bigl\rfloor\bigl\} \rfloor\}
$

\end{document}

Bildbeschreibung hier eingeben

Ja, es ist ein großer Sprung von \Bigauf \bigg: man muss den Faktor etwas reduzieren. Als Übung übrig.

Antwort2

\lfloorSie müssen es nicht erneut deklarieren \rfloor. Es existiert bereits. Pdflatex ist hier nicht das Problem.

\documentclass[12pt]{article}
\usepackage{amsthm,amsmath,ragged2e,relsize,graphicx,bbm,mathtools}

\DeclareFontEncoding{LS1}{}{}
\DeclareFontEncoding{LS2}{}{\noaccents@}
\DeclareFontSubstitution{LS1}{stix2}{m}{n}
\DeclareFontSubstitution{LS2}{stix2}{m}{n}
\DeclareSymbolFont{xsymbols}{LS1}{stix2scr}{m}{n}
\DeclareSymbolFont{xlargesymbols}{LS2}{stix2ex}{m}{n}
% \DeclareMathDelimiter{\lfloor}{\mathopen}{symbols}{"E2}{xlargesymbols}{"08} <- Not necessary
% \DeclareMathDelimiter{\rfloor}{\mathclose}{symbols}{"E3}{xlargesymbols}{"09} <- Not necessary

\begin{document}
Why am i not getting $\lfloor x\rfloor$ properly?
\end{document}

produziert Bildbeschreibung hier eingeben

Du benötigst übrigens nur:

\documentclass{article}

\begin{document}
    You can get $\lfloor x \rfloor$ properly.
\end{document}

erhalten

Bildbeschreibung hier eingeben

verwandte Informationen