Text FormattingÃ

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
helllo
Posts: 44
Joined: Sat Jun 05, 2010 5:20 pm

Ã

Post by helllo »

Hi :)
I'm trying to type in Latex  but I can't do it using this :

Code: Select all

Ã
nor this :

Code: Select all

A^~
Anyone knows how to do this ?
Thanks !
Last edited by helllo on Sun Aug 15, 2010 11:53 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

Stefan Kottwitz
Site Admin
Posts: 10334
Joined: Mon Mar 10, 2008 9:44 pm

Ã

Post by Stefan Kottwitz »

Hi,

\sim is a symbol for ~, so in math mode it may be done by

Code: Select all

\mathop{A}\limits^\sim$
or easier

Code: Select all

\widetilde{A}$
But for text mode, just use the inputenc package:

Code: Select all

\usepackage[utf8]{inputenc}
Replace utf8 by the encoding of your editor, if necessary. It might be latin1 on Windows. Afterwards à can be entered directly in the input text.

Stefan
LaTeX.org admin
helllo
Posts: 44
Joined: Sat Jun 05, 2010 5:20 pm

Re: Ã

Post by helllo »

thx ;)
Post Reply