I am using the classicthesis package in LyX to typeset my thesis. I have a plot produced with pgfplots. It uses math fonts same as elsewhere in the text, which is inconsistent with other plots of mine (imported from Matlab), where Arial is used for tick and axes labels. So my question is, how can I change the font family for the text used in my pgfplots plot (i.e. the caption font should NOT change)? The minimal TeX code would be:
\documentclass[12pt,a4paper]{report}
\usepackage[latin1]{inputenc}
\usepackage[sc,osf]{mathpazo}
\usepackage[euler-digits]{eulervm}
\usepackage{pgfplots}
\pgfplotsset{compat=1.3}
\begin{document}
\begin{figure}
\centering
\pgfplotsset{every axis/.append style={
thick,
tick style={semithick}}}
\begin{tikzpicture}
\begin{axis}[
height=8cm,
width=15cm,
xlabel = {$x$},
ylabel = {$\phi(x)$},
domain = 0:1,
xtick={0.0,0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9,1.0},
ytick={0.0,0.1,0.2,0.3,0.4,0.5},
grid=major,
no markers,
cycle list name=linestyles
]
\addplot {0.5-abs(x-0.5)};
\end{axis}
\end{tikzpicture}
\caption{Solution of Eikonal equation on a 1D domain $\Omega=[0;1]$}
\end{figure}
\end{document}
So I would like all the tick numbers, and x and \phi(x) labels to be in Arial, while the bottom caption to remain in Palatino.

\phi(x)similar to your expressions in code instead of trying sans serif Greek, at least the numbers and tick labels would match your Matlab style. – Stefan Kottwitz Nov 01 '11 at 16:53\phi(x)part, which instead looks something likeOExwithout any parentheses (I don't know how to add pictures to comments and I don't want to add another answer). Does it mean that I lack some font files? – MindV0rtex Nov 01 '11 at 17:24eulervm,\phiworks with\sansmath. – Stefan Kottwitz Nov 02 '11 at 11:38\renewcommand{\sfdefault}{mysf-font}and when I usefont=\sffamilyit doesn't change accordingly. – jonen Jun 08 '14 at 13:46assume math mode=truewithtick label styledo disable math mode? – Jonathan Komar Jun 07 '17 at 11:13