Text FormattingBrasilian Portuguese Accentuation Lib.

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
wander_paes2013
Posts: 1
Joined: Thu Oct 31, 2013 8:38 pm

Brasilian Portuguese Accentuation Lib.

Post by wander_paes2013 »

Hi, I need a help :

1. Where can I download Brasilian Portuguese accentuation Library ?

2. How can I set up Brasilian Portuguese accentuation in Texnicenter Project ?

Thank you

att.
Wander

Recommended reading 2024:

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

NEW: TikZ book now 40% off at Amazon.com for a short time.

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Brasilian Portuguese Accentuation Lib.

Post by localghost »

wander_paes2013 wrote:[…] Where can I download Brasilian Portuguese accentuation Library ? […]
What is this library going to accomplish?
wander_paes2013 wrote:[…] How can I set up Brasilian Portuguese accentuation in Texnicenter Project ? […]
What exactly do you expect from this setting?


Best regards and welcome to the board
Thorsten
User avatar
nlct
Posts: 276
Joined: Thu Nov 06, 2008 11:15 am

Brasilian Portuguese Accentuation Lib.

Post by nlct »

It's not clear what you're asking. If you want to add a dictionary to TeXnicCenter, there's information on how to do that at http://texniccenter.sourceforge.net/dictionaries.html. If you want to know how to type accents in your document, you just need to specify the input encoding for your document via the inputenc package. For example, I use a UTF8 text editor, so I can write a document like this:

Code: Select all

\documentclass{article}

\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[brazilian]{babel}

\begin{document}

O pato feliz vai à festa do papagaio amanhã.

\end{document}
(I don't know what default encoding TeXnicCenter uses or how to change it.)

Another possibility is to use accent commands, like this:

Code: Select all

\documentclass{article}

\usepackage[brazilian]{babel}

\begin{document}

O pato feliz vai \`a festa do papagaio amanh\~a.

\end{document}
Regards
Nicola Talbot
Post Reply