General ⇒ adding < > symbols
adding < > symbols
<
>
thanks
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Re: adding < > symbols
As delimiters, use \langle , \rangle
Re: adding < > symbols
- 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¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- 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
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
adding < > symbols
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}