Recebi o problema de que um texto girado parece desbotado quando você usa o pacote:
\usepackage[T1]{fontenc}
Infelizmente não posso rejeitar o fontenc
-package porque ele tem muitas dependências com o resto do projeto. Existe alguma solução alternativa para lidar com esse problema?
sem pacote:
com pacote:
Exemplo:
\documentclass[a4paper,10pt]{article}
%FONTS
\usepackage[T1]{fontenc}
%TIKZ LIBRARYS
\usepackage{tikz}
\usetikzlibrary{positioning,shapes,shadows,arrows,backgrounds}
\tikzstyle{arrow}=[->, >=open triangle 60, thick, color=black]
\begin{document}
\begin{tikzpicture}
\draw[arrow, rounded corners] (0,0) -- node[sloped, anchor=center, above] {I have a} node[sloped, anchor=center, below] {washed style :(} (-4,-4);
\end{tikzpicture}
\end{document}
Responder1
Referindo-se à resposta emProblema com siunitx e fonte T1, Adicionar \usepackage[T1]{fontenc}
ao seu preâmbulo carregará uma fonte de bitmap por padrão. Para corrigir isso, você deve instalar o pacote cm-super ou carregar uma fonte vetorial (por exemplo lmodern
ou libertine
).
Com isso, o código muda para:
\documentclass[a4paper,10pt]{article}
%FONTS
\usepackage[T1]{fontenc}
\usepackage{lmodern}
%TIKZ LIBRARYS
\usepackage{tikz}
\usetikzlibrary{positioning,shapes,shadows,arrows,backgrounds}
\tikzstyle{arrow}=[->, >=open triangle 60, thick, color=black]
\begin{document}
\begin{tikzpicture}
\draw[arrow, rounded corners] (0,0) -- node[sloped, anchor=center, above] {I have a} node[sloped, anchor=center, below] {washed style :(} (-4,-4);
\end{tikzpicture}
\end{document}