I have a problem with 'ą' and 'ę' letters. I have to write a document that can be easily copied to Notepad without losing any character. Unfortunately, 'ą' and 'ę' are converted to something like 'a˛' and '˛e'.
MWE:
Code: Select all
\documentclass[12pt,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8x]{inputenc}
\usepackage{polski}
\usepackage{mathptmx}
\begin{document}
Zażółć gęślą jaźń.
\end{document}
mathptmx
package. I do so since I have to use a Times-like font.Is there any way to include the proper 'ą' and 'ę' characters here (not the ones combined of two characters, ogonek+letter)? Or maybe there is a Times-like font that contains them?
I use Tex Live on Linux. I prefer not to use XeTex, because I'm unfamiliar with it (and I use a lot of mathematical symbols - I'm unsure if XeTex copes with them sufficiently well).
I'll appreciate any help.