I know, it sounds strange, but I need to have a fraction in italics. I have plenty of tables in my document where in one column everything is always in italics. And there I have one specific table with some simple fractions. I don't need and don't want them in math-mode. I tried following to have it look as text-mode:
\begin{longtable}[r]{p{0.46\linewidth}p{0.46\linewidth}}
$\frac{\text{1}}{\text{2}}$ & một \textbf{phần} hai \\
\\
$\frac{\text{3}}{\text{4}}$ & ba \textbf{phần} tư \\
\\
$\frac{\text{6}}{\text{8}}$ & sáu \textbf{phần} tám \\
\end{longtable}
But when it finally looks as all other text, I can't make it italic. I tried this:
\begin{longtable}[r]{p{0.46\linewidth}p{0.46\linewidth}}
$\frac{\text{\textit{1}}}{\text{\textit{2}}}$ & một \textbf{phần} hai \\
\\
$\frac{\text{\textit{3}}}{\text{\textit{4}}}$ & ba \textbf{phần} tư \\
\\
$\frac{\text{\textit{6}}}{\text{\textit{8}}}$ & sáu \textbf{phần} tám \\
\end{longtable}
but it doesn't look good... I mean: It is not the whole fraction that is in italics - it's only the numbers that went into italics.
Does anyone have an idea if there's a better way to have it done?





\text{\textit{1}}construction you could use simply\mathit. Or even define\newcommand*{\itfrac}[2]{\frac{\mathit{#1}}{\mathit{#2}}}. – campa Aug 26 '15 at 14:14$\frac{\it 1}{\it 2}$or even${\it \frac{1}{2}}$. It's definitely shorter. – RHertel Aug 26 '15 at 14:19\itshouldn't really be used: Does it matter if I use \textit or \it, \bfseries or \bf, etc – Torbjørn T. Aug 26 '15 at 14:28\itwas an "obsolete command". I've been using LaTeX for many years. It's hard to change habits, but I'm glad to learn about new developments. – RHertel Aug 26 '15 at 14:32