import matplotlib.pyplot as plt import numpy as np fig, ax = plt.subplots(figsize=(8.27, 11.69)) # A4 ax.set_yscale('log') ax.set_ylim(1, 1000) # 3 cycles (1 to 1000) ax.set_xlim(0, 10) ax.set_xlabel('Linear Axis') ax.set_ylabel('Logarithmic Axis (3 cycles)') ax.grid(True, which='major', linestyle='-', linewidth=1) ax.grid(True, which='minor', linestyle=':', linewidth=0.5) plt.title('Hoja Semilogarítmica - 3 Ciclos') plt.savefig('semilog_3cycles.pdf', dpi=300)
\documentclass{article} \usepackage{pgfplots} \usepgfplotslibrary{dateplot} \begin{document} \begin{tikzpicture} \begin{semilogyaxis}[ width=16cm, height=25cm, ymin=1, ymax=1000, xmin=0, xmax=10, grid=major, grid style={dashed} ] \addplot[draw=none] coordinates {(0,1) (10,1000)}; \end{semilogyaxis} \end{tikzpicture} \end{document} You now have the complete content to recreate hoja semilogaritmica 3 ciclos.pdf . Use Python or Inkscape with the measurements provided to generate the exact PDF file you need. hoja semilogaritmica 3 ciclos pdf
297 mm Height per cycle: 99 mm