I am writing an article in the Journal of the Optical Society of America B (JOSA B) and I have used the journal's LaTeX template.
Unfortunately, I have a problem with the output PDF. Instead of capital Greek letters I get a black square and I cannot figure out what the problem is. This problem is exclusively for capital Greek letters. Other letters and mathematical signs are shown properly. I only use the amsmath package.
\documentclass[9pt,twocolumn,twoside]{osajnl} % http://www.opticsinfobase.org/josab/submit/templates/pc/osajnl_2015.zip (*.zip-file, 581 kB)
\usepackage{amsmath}
\usepackage{breqn}
\usepackage{subfigure}
\journal{josab} % Choose journal (ao, josaa, josab)
\setboolean{shortarticle}{false} % true = letter, false = research article
\begin{document}
\begin{subequations}
\begin{equation}
\left[\tilde{V}^{-^{(n)}}\right]=\left[\Gamma^{(n)}\right]\left[\tilde{V}^{+^{(n)}}\right],
\end{equation}
\begin{align}
\left[V_m^{(n)}(z) \right]=\left[ P^{(n)} \right]
\left( \left[ \exp \left( -j k ^{(n)} \left( z-z_n \right) \right) \right] \left[ \tilde{V}^{+^{(n)}} \right] + \\
\left[ \exp \left( +j k ^{(n)} \left( z-z_{n+1} \right) \right) \right] \left[ \tilde{V}^{-^{(n)}} \right] \right)
\end{align}
\end{subequations}
\end{document}




\documentclass{...}and ending with\end{document}. – Mar 23 '15 at 17:04Here is an mwe:
\documentclass[9pt,twocolumn,twoside]{osajnl} \usepackage{amsmath} \usepackage{breqn} \usepackage{subfigure}
\journal{josab} % Choose journal (ao, josaa, josab)
\setboolean{shortarticle}{false} % true = letter, false = research article
\begin{document}
\begin{subequations} \begin{equation} \left[ \tilde{V}^{-^{(n)}} \right] = \left[ \Gamma^{(n)} \right] \left[ \tilde{V}^{+^{(n)}} \right], \end{equation} \begin{equation} Eq. 2 \end{equation} \end{subequations}
\end{document}
– user3276054 Mar 23 '15 at 19:33http://www.opticsinfobase.org/josab/submit/templates/pc/osajnl_2015.zip
– user3276054 Mar 23 '15 at 19:34subfigureis obsolete for quite a while.subfigis the official successor.subcaptionis the only package supportinghyperrefin a satisfying way. – Johannes_B Mar 23 '15 at 22:27breqn. Don't use it. – egreg Mar 23 '15 at 22:30\leftand\rightyou're using in the examplealignis necessary. – egreg Mar 24 '15 at 16:12\leftand\right! I used\bigland\bigr, and yes, they seem good. Thank you – user3276054 Mar 24 '15 at 22:04