I use the font Palatino from the package newpxtext in combination with LuaLaTeX. With this package it is not possible to set the german special character ß directly:
% Magic comments for TeXstudio
% !TeX spellcheck = de_DE
% !TeX program = lualatex
\documentclass{scrartcl}
%\usepackage{fontspec}
% Font: Palatino
\usepackage{newpxtext}
\begin{document}
Draußen währt am längsten.
Drau\ss en währt am längsten.
\end{document}
The result from the MWE is: DrauSSen währt am längsten.. It works when I switch to fontspec.
How is it possible to use the sign ß instead of \ss to set a text?
fontspecdoes not work well withnewpxtextpackage. – Dirk Feb 04 '14 at 13:55