Übermäßige Ränder entfernen

Übermäßige Ränder entfernen

Aus hier und da gefundenen Daten habe ich ein Projekt umgestaltet, um Kurven aus berechneten Daten zu zeichnen. Ich habe ein Problem mit meiner Ausgabedatei: Ich habe zu viele Ränder oder zumindest weiße Bereiche ohne Informationen. Ich möchte nur den Teil behalten können, der mich interessiert, nämlich das Diagramm mit all seinen Details (Achsen und Achsentitel). Ich sehe nicht, wo sich die Linien befinden, die die Größe des Gesamtrahmens der Abbildung angeben. Ich habe versucht, die Linie \begin{tikzpicture}in zu ändern \begin{tikzpicture}(0,0)(10,10), aber das ändert nichts.

Ich freue mich über jeden Ratschlag (die brutale Methode des Querschneidens des resultierenden PDFs möchte ich nicht wirklich anwenden!).

Graph

Der Code :

\documentclass[border=0.5cm, 11pt]{standalone}

\usepackage{dosageAB}
\usepackage{pgfplots}\pgfplotsset{compat=newest}


\begin{document}

\titragepHlAFBF{titrage Acide fort par base forte}{1}{0.013}{10}{0.01}

\end{document}

Die dazugehörige STY-Datei:

\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{dosageAB}


\RequirePackage[utf8x]{inputenc}    
\RequirePackage{graphicx,subfigure}
\RequirePackage{pdfpages}
\RequirePackage{multicol}
\RequirePackage{multirow}               %package qui permet de fusionner cellules d'un tableau

\RequirePackage[french]{babel}
\RequirePackage{float}
\RequirePackage{array}

%lien url

\RequirePackage{hyperref}

%perso puces
\RequirePackage{enumitem}
\frenchbsetup{StandardLists=true}

%item
\RequirePackage{xcolor}


%boîte colorée
\RequirePackage{tcolorbox}

\RequirePackage[a4paper,DIV=12]{typearea}


%encadrement formules
\RequirePackage{amsmath}
\RequirePackage{siunitx}
\RequirePackage{ucs}

%lignes en pointillés
\RequirePackage{multido}


\RequirePackage{csvsimple}

%

%marge
\RequirePackage{marginnote}
\RequirePackage{geometry}
% boîtes arrondies compétences
\RequirePackage{fancybox}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%image Tikz
%%%%%%%%%%%%%%%%%%%%%%%%%%

\RequirePackage{tikz}
\usetikzlibrary{arrows,shapes,positioning}
\usetikzlibrary{decorations.markings}
\tikzstyle arrowstyle=[scale=1]
\tikzstyle directed=[postaction={decorate,decoration={markings,mark=at position .65 with {\arrow[arrowstyle]{stealth}}}}]
\tikzstyle reverse directed=[postaction={decorate,decoration={markings,mark=at position .65 with {\arrowreversed[arrowstyle]{stealth};}}}]
\RequirePackage{pgfplots}

\sisetup{locale = FR,detect-all}


%commande affichage directlua
\newcommand{\pdl}[1]{
\directlua{tex.sprint(#1)}
}

%définition incrément autour de l'équivalence

\def\inc{0.0125}

%%commande Titrage Acide Fort par une base Forte en ligne continue

\newcommand{\titragepHlAFBF}[5]{

\def\CA{#3} \def\VA{#4} \def\CB{#5} 
\pgfmathsetmacro{\negativeLogCa}{-log10(\CA)}


\directlua{
VE=\CA*\VA/\CB
VEinf=VE-\inc
VEsup=VE+\inc
pH0=-math.log(\CA)/math.log(10)
ysup=14+math.log((\CA*\VA)/(\VA+VEsup))/math.log(10)+math.log(\CB*VEsup/(\CA*\VA)-1)/math.log(10)
yinf=-math.log((\CA*\VA)/(\VA+VEinf))/math.log(10)-math.log(1-(\CB*VEinf/(\CA*\VA)))/math.log(10)
a=(ysup-yinf)/(VEsup-VEinf)
b=ysup-a*VEsup
}

\def\VE{\pdl{VE}}
\def\VEinf{\pdl{VEinf}}
\def\VEsup{\pdl{VEsup}}
\def\a{\pdl{a}}
\def\b{\pdl{b}}
\def\pHinit{\pdl{pH0}}

\begin{tikzpicture}


\begin{axis}[% mise en forme du graphique :
    xmin=0,xmax=25,
    ymin=0,ymax=14,
    xlabel=volume $ V_b $ versé (mL),
    ylabel=pH,
    ytick distance=2,
    minor y tick num=1,% nombre de graduations secondaires intermédiaires
    minor x tick num=4,% nombre de graduations secondaires intermédiaires
    grid,
    grid=both,% grilles primaire et secondaire
    axis line shift=3pt,
    xtick align=outside,
    ytick align=outside,
    tickpos=left,
 samples=101,
    ]

%\addplot+ coordinates{(0,\pHinit)};

\addplot [domain=0:\VEinf,color=blue] {-ln((\CA*\VA)/(\VA+x))/ln(10)-ln(1-(\CB*x/(\CA*\VA)))/ln(10)};

\addplot [domain=\VEinf:\VEsup,color=blue] {\a*x+\b};

\addplot [domain=\VEsup:25,color=blue] {14+ln((\CA*\VA)/(\VA+x))/ln(10)+ln(\CB*x/(\CA*\VA)-1)/ln(10)};


 \coordinate (equiv) at (\VE,7);
 \draw[magenta, dashed, thick] (0,7) node[above right, font=\scriptsize \ssfamily]{pH=7}-- (equiv) -- (\VE,0)node[above right, font=\scriptsize \ssfamily]{$V_{eq}=\qty{\VE}{\ml}$} ;
\filldraw[magenta] (equiv) circle(1pt) node[right, font=\scriptsize \ssfamily]{équivalence};
\end{axis}

\end{tikzpicture}
}

verwandte Informationen