GeneralDouble superscript error

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
Danyon
Posts: 4
Joined: Tue Apr 20, 2010 4:03 pm

Double superscript error

Post by Danyon »

Hi,

I have been sent a .tex file by a colleague which I want to create a PDF from. When I run PDFLaTeX I receive the following:

"Error: Double superscript". The error refers to the line below:

Code: Select all

In the previous section, we had shown that $\sqrt{n}\bar{V}_n^{-1/2}(\hat{\theta}_n-\theta_0) \rightarrow_d N(0, I_p)$, where $\bar{V}_n=A'\mathbf{P}'E(UU'|X)\mathbf{P}A=A^*'B_K^{-1}\mathbf{p}'E(UU'|X)\mathbf{p}B_K^{-1}A^*$.
I have isolated it to this part of the above:

Code: Select all

\mathbf{P}A=A^*'B_K^{-1}
How do I resolve this?

Thanks

Recommended reading 2024:

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

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

5gon12eder
Posts: 126
Joined: Sun Feb 13, 2011 8:36 pm

Double superscript error

Post by 5gon12eder »

The problem is within the

Code: Select all

$A^*'$
LaTeX gets confused what you (or your colleague) mean with the prime after the superscript asterisks (I'm too). You (he) probably wanted something like

Code: Select all

$A^*{'}$
(Stared A with prime.)

or

Code: Select all

$A^{*'}$
(A with superscript {asterisks prime}.)

Best
I'm using pdfTeX, Version 3.1415926-1.40.10 (TeX Live 2009/Debian).
Danyon
Posts: 4
Joined: Tue Apr 20, 2010 4:03 pm

Re: Double superscript error

Post by Danyon »

Thanks so much for your help - much appreciated. I will try what you have suggested.
Post Reply