I am thinking of writing a pretty long document in TeXmaker with underlying MiKTeX (I am not sure if I use the terms right yet, started yesterday) and I would like to use Polish letters, like ę or ł. I found a way to do that using \usepackage[polish]{babel}, but using this I always have to type the letters in with some prefix (e.g. "o turns to ó). Is there a package or use of some macros to be able to write the ó in TeX and get the same output?
Here, it is said that some more fancy alphabets are handled by fonts different than Computer Modern. As I am not that used to CM, I could use one of these if any of you knows them.
Solved. Here's the current format:
\documentclass{book}
\usepackage[T1]{fontenc}
\usepackage[polish]{babel}
\usepackage[utf8]{inputenc}
Check comments for explanation.
\usepackage[utf-8]{inputenc}being the most important. I just found so many websites on which people were 'escaping' Polish characters, I really thought this is the only option, but seems TeX has been updated since. Edited the answer. – James Pond Sep 22 '15 at 02:07