![Como posso alterar o tamanho da fonte nos rótulos xy?](https://rvso.com/image/330714/Como%20posso%20alterar%20o%20tamanho%20da%20fonte%20nos%20r%C3%B3tulos%20xy%3F.png)
Eu tenho o seguinte código que copiei daquiComo desenhar a hipérbole unitária em LaTex?e girou-o. A fonte dos rótulos dos eixos é muito grande. Analisando o manual e as postagens deverais, não consigo resolver meu problema. Tentei colocar {font size=tiny em vários locais, nada muda. Ajuda será apreciada
\documentclass[tikz]{standalone}
\usepackage{pgfplots}
\pgfplotsset{width=5cm,compat=1.12}
% axis style, ticks, etc
\pgfplotsset{every axis/.append style={font=\tiny}{
axis x line=middle, % put the x axis in the middle
axis y line=middle, % put the y axis in the middle
axis line style={->}, % arrows on the axis
`xlabel={\footnotesize$x^{'}$}, % default put x `on x-axis
ylabel={\footnotesize$y^{'}$},{font=\tiny} %
default put y on y-axis
rotate=40.0}}
% arrows as stealth fighters
\tikzset{>=stealth}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
xmin=-5,xmax=5,
ymin=-5,ymax=5]
\addplot [red,domain=-2:2] ({cosh(x)}, {sinh(x)});
\addplot [red,domain=-2:2] ({-cosh(x)}, {sinh(x)});
\addplot[red,dashed] expression {x};
\addplot[red,dashed] expression {-x};
\end{axis}
\end{tikzpicture}
\end{document}
Responder1
Você pode modificar o tamanho da fonte labels
e tick labels
com label style={font=\tiny}
etick label style={font=\tiny}
\documentclass[tikz]{standalone}
\usepackage{pgfplots}
% axis style, ticks, etc
\pgfplotsset{every axis/.append style={
axis x line=middle, % put the x axis in the middle
axis y line=middle, % put the y axis in the middle
axis line style={<->}, % arrows on the axis
xlabel={$x$}, % default put x on x-axis
ylabel={$y$}, % default put y on y-axis
label style={font=\tiny},
tick label style={font=\tiny}
}}
% arrows as stealth fighters
\tikzset{>=stealth}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
xmin=-5,xmax=5,
ymin=-5,ymax=5]
\addplot [red,thick,domain=-2:2] ({cosh(x)}, {sinh(x)});
\addplot [red,thick,domain=-2:2] ({-cosh(x)}, {sinh(x)});
\addplot[red,dashed] expression {x};
\addplot[red,dashed] expression {-x};
\end{axis}
\end{tikzpicture}
\end{document}