TeXShopcircumflex accent

Information and discussion about TeXShop, an integrated LaTeX environment for Mac OS X
Post Reply
vanessaj
Posts: 1
Joined: Tue Jun 30, 2015 1:50 am

circumflex accent

Post by vanessaj »

Hello,

I am a beginner, so please forgive me for giving explanation that may not be clear.
I am working with Mac.

I am using the engine XeLaTex, as required “by” the console.
For all circumflex accent, for example ô

Code: Select all

\ˆ{o}
I have the comment :
Undefined control sequence.
I had tried without success

Code: Select all

\usepackage{xunicode} 
or

Code: Select all

\usepackage[utf8]{inputenc}
Any idea ?
In advance, thank you.

vanessaj

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

circumflex accent

Post by Johannes_B »

Hi, how would you type in the letter including the diacritic when writing in word, or when writing an email? With XeLaTeX, you type it in just the same way.

Code: Select all

\documentclass{article}
\usepackage{fontspec}
\begin{document}
I can type \^o or \^{o} or ô.
\end{document}
The other notation should work as well, so there might be something else going on.

Hint: There is a simple algorithm to find the source of a problem, when finished you will have a so called minimal working example that we can use to test possible solutions. More Information: Creating a minimal example
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Post Reply