क्या बैच फ़ाइल बनाने का कोई तरीका है जो प्रतिकृति की तरह स्वरूपण करते समय मिल जाएगा और बदल देगा
\begin{center}
\begin{tikzpicture}[declare Function ={fy(\x)=sin(\x+rand*100)^2;}]
\begin{axis} [
Xmin=-720, xmax=720,
Width=10cm, height=10cm,
Tick style=black,
Clip mode=individual,
X axis line style={opacity=0},
Y axis line style={opacity=0},
Ticks=none
]
\addplot [
Ultra thick,
Smooth,
Tension=1,
Samples=30,
Domain=-720:720
] {fy(x)};
\draw[latex-Latex, xshift=-0.5cm] ({rel axis cs:0,0}|-{rel axis cs:0,0})--({rel axis cs:0,0}|-{rel axis cs:0,1}) node[left, pos=0.5] {$h$};
\end{axis}
\end{tikzpicture}
\end{center}
इसके साथ
\begin{tikzpicture}[declare function ={fy(\x)=sin(\x+rand*100)^2;}]
\begin{axis} [
xmin=-720, xmax=720,
width=10cm, height=10cm,
tick style=black,
clip mode=individual,
x axis line style={opacity=0},
y axis line style={opacity=0},
ticks=none
]
\addplot [
ultra thick,
smooth,
tension=1,
samples=30,
domain=-720:720
] {fy(x)};
\draw[latex-latex, xshift=-0.5cm] ({rel axis cs:0,0}|-{rel axis cs:0,0}) -- ({rel axis cs:0,0}|-{rel axis cs:0,1}) node[left, pos=0.5] {$h$};
\end{axis}
\end{tikzpicture}
मैंने एक अच्छे घंटे के लिए इंटरनेट पर खोज की और मैंने पाया कि वर्डपैड भी ऐसा नहीं कर सकता है।
क्या कोई बैच फ़ाइल इसे प्राप्त कर सकती है।
किसी भी मदद की सराहना की है
क्या कोई अन्य प्रोग्राम कमांड लाइन का उपयोग करके ऐसा कर सकता है?