General ⇒ adding < > symbols
adding < > symbols
<
>
thanks
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
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: 10360
- 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: 10360
- 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}