Hindi, asked by shettypayush, 1 day ago

ℑ _218_ \ \textless \ br /\ \textgreater \ ℨ ℑℑ2​18 ​\textless br/ \textgreater Zℑ Let's see how much you can​

Answers

Answered by nihasrajgone2005
1

Answer:

if you do not need the tabbing environment then you can overwrite the original definitions:

\documentclass{report}

\let\<\textless

\let\>\textgreater

\begin{document}

\<foo\> <foo>

\end{document}

enter image description here

With \usepackage[T1]{fontenc} there will be no difference!

please drop some ❤️❤️❤️

Explanation:

please f-o-l-l-o-w m-e bro please

Answered by STUDYwithPRAVEEN
0

Answer:

ℑ _218_ \ \textless \ br /\ \textgreater \ ℨ ℑℑ2​18 ​\textless br/ \textgreater Zℑ Let's see how much you can​

Very likely you are using the old OT1 encoding:

\documentclass{article}

\begin{document}

<Hello> \textless world\textgreater

\end{document}

Result

The example also shows how to typeset < and > by using \textless or \textgreater.

The issue is resolved with the T1 font encoding:

\documentclass{article}

\usepackage[T1]{fontenc}

\usepackage{lmodern}% optional

\begin{document}

<Hello> \textless world\textgreater

\end{document}

Similar questions