General ⇒ adding < > symbols
adding < > symbols
Can you please tell me how i can add these signs
<
>
thanks
<
>
thanks
NEW: TikZ book now 40% off at Amazon.com for a short time.

Re: adding < > symbols
As relational symbols, use simply < , >
As delimiters, use \langle , \rangle
As delimiters, use \langle , \rangle
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Re: adding < > symbols
i have been trying that but keep getting errors
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
adding < > symbols
You have to be much more precise in the whole description of your problem. In this case you have to provide a minimal working example (MWE) that reproduces these errors. It would also be helpful if you can provide the full error message(s). Therefore you can post the log file as attachment.ma501th wrote:i have been trying that but keep getting errors
Basic LaTeX documentation is available with lshort and l2tabu. A good overview of symbols is given with "The Comprehensive LaTeX Symbol List". Useful information about typesetting mathematical expressions can be found in "Math Mode".
Best regards
Thorsten¹
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
- Stefan Kottwitz
- Site Admin
- Posts: 10337
- Joined: Mon Mar 10, 2008 9:44 pm
adding < > symbols
A lot of symbols need to be set in math mode, take care of it. That means, often you have to enclose the symbol in $ signs.ma501th wrote:i have been trying that but keep getting errors
Stefan
Re: adding < > symbols
sorry for asking...but how would i do that?
- Stefan Kottwitz
- Site Admin
- Posts: 10337
- Joined: Mon Mar 10, 2008 9:44 pm
adding < > symbols
Hi ma501th,
here is one example:
Stefan
here is one example:
Code: Select all
\documentclass[a4paper,10pt]{article}
\begin{document}
with math mode: $<$ and $>$
in text mode: \textless\ and \textgreater
\end{document}