Compare commits
1 Commits
master
...
quantum-sh
Author | SHA1 | Date |
---|---|---|
Nihonium | df99bf9129 | 12 months ago |
@ -0,0 +1,45 @@
|
||||
module Main where
|
||||
import Text.Printf
|
||||
|
||||
ns = [860, 847, 743, 672, 623, 521, 461, 427, 376, 343, 315, 288]
|
||||
angles = take 12 $ [0, 10..]
|
||||
|
||||
main :: IO()
|
||||
main = do
|
||||
let xs = (map (\x -> 1 - cos (pi * x / 180)) angles)
|
||||
let ys = (map (\x -> 1 / x - 1 / (head ns)) ns)
|
||||
print_data xs ys
|
||||
|
||||
let k' = k xs ys
|
||||
--let b' = b xs ys
|
||||
|
||||
putStr "k="
|
||||
print k'
|
||||
|
||||
let n0 = k' * (1 - cos 0) + 1/ (head ns)
|
||||
print $ 1 / n0
|
||||
let n90 = k' * (1 - cos (pi / 2)) + 1 / (head ns)
|
||||
print $ 1 / n90
|
||||
|
||||
|
||||
print_data :: [Double] -> [Double] -> IO ()
|
||||
print_data (x:xs) (y:ys) = do
|
||||
printf "%f %f\n" x y
|
||||
print_data xs ys
|
||||
print_data _ _ = return ()
|
||||
|
||||
mean :: [Double] -> Double
|
||||
mean lst = sum lst / n where
|
||||
n = fromIntegral $ length lst
|
||||
|
||||
k :: [Double] -> [Double] -> Double
|
||||
k xs ys = xy / x' where
|
||||
xy = mean $ zipWith (*) xs ys
|
||||
x' = mean $ map (^2) xs
|
||||
|
||||
b :: [Double] -> [Double] -> Double
|
||||
b xs ys = (xy - x * y) / (x ^ 2 - x') where
|
||||
xy = mean $ zipWith (*) xs ys
|
||||
x = mean xs
|
||||
y = mean ys
|
||||
x' = mean $ map (^2) xs
|
@ -0,0 +1,12 @@
|
||||
0.0 0.0
|
||||
0.01519224698779198 0.00001784684659948926
|
||||
0.06030737921409157 0.00018310432251400673
|
||||
0.1339745962155613 0.0003253045404208194
|
||||
0.233955556881022 0.00044234573892269215
|
||||
0.35721239031346064 0.0007565950988706869
|
||||
0.4999999999999999 0.0010064066992887051
|
||||
0.6579798566743311 0.0011791296770328414
|
||||
0.8263518223330696 0.0014967837704106877
|
||||
0.9999999999999999 0.0017526611973693131
|
||||
1.1736481776669303 0.002011812476928756
|
||||
1.3420201433256687 0.0023094315245478034
|
@ -0,0 +1,13 @@
|
||||
set xrange[0:1.4]
|
||||
set yrange[0:0.0025]
|
||||
set grid
|
||||
unset key
|
||||
|
||||
set mxtics 5
|
||||
set mytics 5
|
||||
|
||||
set grid mxtics mytics
|
||||
|
||||
set multiplot
|
||||
|
||||
plot 1.7670420408213902e-3 * x
|
After Width: | Height: | Size: 8.0 KiB |
@ -0,0 +1,158 @@
|
||||
% GNUPLOT: LaTeX picture with Postscript
|
||||
\begingroup
|
||||
\makeatletter
|
||||
\providecommand\color[2][]{%
|
||||
\GenericError{(gnuplot) \space\space\space\@spaces}{%
|
||||
Package color not loaded in conjunction with
|
||||
terminal option `colourtext'%
|
||||
}{See the gnuplot documentation for explanation.%
|
||||
}{Either use 'blacktext' in gnuplot or load the package
|
||||
color.sty in LaTeX.}%
|
||||
\renewcommand\color[2][]{}%
|
||||
}%
|
||||
\providecommand\includegraphics[2][]{%
|
||||
\GenericError{(gnuplot) \space\space\space\@spaces}{%
|
||||
Package graphicx or graphics not loaded%
|
||||
}{See the gnuplot documentation for explanation.%
|
||||
}{The gnuplot epslatex terminal needs graphicx.sty or graphics.sty.}%
|
||||
\renewcommand\includegraphics[2][]{}%
|
||||
}%
|
||||
\providecommand\rotatebox[2]{#2}%
|
||||
\@ifundefined{ifGPcolor}{%
|
||||
\newif\ifGPcolor
|
||||
\GPcolorfalse
|
||||
}{}%
|
||||
\@ifundefined{ifGPblacktext}{%
|
||||
\newif\ifGPblacktext
|
||||
\GPblacktexttrue
|
||||
}{}%
|
||||
% define a \g@addto@macro without @ in the name:
|
||||
\let\gplgaddtomacro\g@addto@macro
|
||||
% define empty templates for all commands taking text:
|
||||
\gdef\gplbacktext{}%
|
||||
\gdef\gplfronttext{}%
|
||||
\makeatother
|
||||
\ifGPblacktext
|
||||
% no textcolor at all
|
||||
\def\colorrgb#1{}%
|
||||
\def\colorgray#1{}%
|
||||
\else
|
||||
% gray or color?
|
||||
\ifGPcolor
|
||||
\def\colorrgb#1{\color[rgb]{#1}}%
|
||||
\def\colorgray#1{\color[gray]{#1}}%
|
||||
\expandafter\def\csname LTw\endcsname{\color{white}}%
|
||||
\expandafter\def\csname LTb\endcsname{\color{black}}%
|
||||
\expandafter\def\csname LTa\endcsname{\color{black}}%
|
||||
\expandafter\def\csname LT0\endcsname{\color[rgb]{1,0,0}}%
|
||||
\expandafter\def\csname LT1\endcsname{\color[rgb]{0,1,0}}%
|
||||
\expandafter\def\csname LT2\endcsname{\color[rgb]{0,0,1}}%
|
||||
\expandafter\def\csname LT3\endcsname{\color[rgb]{1,0,1}}%
|
||||
\expandafter\def\csname LT4\endcsname{\color[rgb]{0,1,1}}%
|
||||
\expandafter\def\csname LT5\endcsname{\color[rgb]{1,1,0}}%
|
||||
\expandafter\def\csname LT6\endcsname{\color[rgb]{0,0,0}}%
|
||||
\expandafter\def\csname LT7\endcsname{\color[rgb]{1,0.3,0}}%
|
||||
\expandafter\def\csname LT8\endcsname{\color[rgb]{0.5,0.5,0.5}}%
|
||||
\else
|
||||
% gray
|
||||
\def\colorrgb#1{\color{black}}%
|
||||
\def\colorgray#1{\color[gray]{#1}}%
|
||||
\expandafter\def\csname LTw\endcsname{\color{white}}%
|
||||
\expandafter\def\csname LTb\endcsname{\color{black}}%
|
||||
\expandafter\def\csname LTa\endcsname{\color{black}}%
|
||||
\expandafter\def\csname LT0\endcsname{\color{black}}%
|
||||
\expandafter\def\csname LT1\endcsname{\color{black}}%
|
||||
\expandafter\def\csname LT2\endcsname{\color{black}}%
|
||||
\expandafter\def\csname LT3\endcsname{\color{black}}%
|
||||
\expandafter\def\csname LT4\endcsname{\color{black}}%
|
||||
\expandafter\def\csname LT5\endcsname{\color{black}}%
|
||||
\expandafter\def\csname LT6\endcsname{\color{black}}%
|
||||
\expandafter\def\csname LT7\endcsname{\color{black}}%
|
||||
\expandafter\def\csname LT8\endcsname{\color{black}}%
|
||||
\fi
|
||||
\fi
|
||||
\setlength{\unitlength}{0.0500bp}%
|
||||
\ifx\gptboxheight\undefined%
|
||||
\newlength{\gptboxheight}%
|
||||
\newlength{\gptboxwidth}%
|
||||
\newsavebox{\gptboxtext}%
|
||||
\fi%
|
||||
\setlength{\fboxrule}{0.5pt}%
|
||||
\setlength{\fboxsep}{1pt}%
|
||||
\definecolor{tbcol}{rgb}{1,1,1}%
|
||||
\begin{picture}(7200.00,5040.00)%
|
||||
\gplgaddtomacro\gplbacktext{%
|
||||
\csname LTb\endcsname%%
|
||||
\put(1210,704){\makebox(0,0)[r]{\strut{}$0$}}%
|
||||
\csname LTb\endcsname%%
|
||||
\put(1210,1527){\makebox(0,0)[r]{\strut{}$0.0005$}}%
|
||||
\csname LTb\endcsname%%
|
||||
\put(1210,2350){\makebox(0,0)[r]{\strut{}$0.001$}}%
|
||||
\csname LTb\endcsname%%
|
||||
\put(1210,3173){\makebox(0,0)[r]{\strut{}$0.0015$}}%
|
||||
\csname LTb\endcsname%%
|
||||
\put(1210,3996){\makebox(0,0)[r]{\strut{}$0.002$}}%
|
||||
\csname LTb\endcsname%%
|
||||
\put(1210,4819){\makebox(0,0)[r]{\strut{}$0.0025$}}%
|
||||
\csname LTb\endcsname%%
|
||||
\put(1342,484){\makebox(0,0){\strut{}$0$}}%
|
||||
\csname LTb\endcsname%%
|
||||
\put(2122,484){\makebox(0,0){\strut{}$0.2$}}%
|
||||
\csname LTb\endcsname%%
|
||||
\put(2902,484){\makebox(0,0){\strut{}$0.4$}}%
|
||||
\csname LTb\endcsname%%
|
||||
\put(3682,484){\makebox(0,0){\strut{}$0.6$}}%
|
||||
\csname LTb\endcsname%%
|
||||
\put(4463,484){\makebox(0,0){\strut{}$0.8$}}%
|
||||
\csname LTb\endcsname%%
|
||||
\put(5243,484){\makebox(0,0){\strut{}$1$}}%
|
||||
\csname LTb\endcsname%%
|
||||
\put(6023,484){\makebox(0,0){\strut{}$1.2$}}%
|
||||
\csname LTb\endcsname%%
|
||||
\put(6803,484){\makebox(0,0){\strut{}$1.4$}}%
|
||||
}%
|
||||
\gplgaddtomacro\gplfronttext{%
|
||||
\csname LTb\endcsname%%
|
||||
\put(209,2761){\rotatebox{-270}{\makebox(0,0){\strut{}$\frac{1}{N(\theta)} - \frac{1}{N(0)}$}}}%
|
||||
\put(4072,154){\makebox(0,0){\strut{}$1 - cos \theta$}}%
|
||||
}%
|
||||
\gplgaddtomacro\gplbacktext{%
|
||||
\csname LTb\endcsname%%
|
||||
\put(1210,704){\makebox(0,0)[r]{\strut{}$0$}}%
|
||||
\csname LTb\endcsname%%
|
||||
\put(1210,1527){\makebox(0,0)[r]{\strut{}$0.0005$}}%
|
||||
\csname LTb\endcsname%%
|
||||
\put(1210,2350){\makebox(0,0)[r]{\strut{}$0.001$}}%
|
||||
\csname LTb\endcsname%%
|
||||
\put(1210,3173){\makebox(0,0)[r]{\strut{}$0.0015$}}%
|
||||
\csname LTb\endcsname%%
|
||||
\put(1210,3996){\makebox(0,0)[r]{\strut{}$0.002$}}%
|
||||
\csname LTb\endcsname%%
|
||||
\put(1210,4819){\makebox(0,0)[r]{\strut{}$0.0025$}}%
|
||||
\csname LTb\endcsname%%
|
||||
\put(1342,484){\makebox(0,0){\strut{}$0$}}%
|
||||
\csname LTb\endcsname%%
|
||||
\put(2122,484){\makebox(0,0){\strut{}$0.2$}}%
|
||||
\csname LTb\endcsname%%
|
||||
\put(2902,484){\makebox(0,0){\strut{}$0.4$}}%
|
||||
\csname LTb\endcsname%%
|
||||
\put(3682,484){\makebox(0,0){\strut{}$0.6$}}%
|
||||
\csname LTb\endcsname%%
|
||||
\put(4463,484){\makebox(0,0){\strut{}$0.8$}}%
|
||||
\csname LTb\endcsname%%
|
||||
\put(5243,484){\makebox(0,0){\strut{}$1$}}%
|
||||
\csname LTb\endcsname%%
|
||||
\put(6023,484){\makebox(0,0){\strut{}$1.2$}}%
|
||||
\csname LTb\endcsname%%
|
||||
\put(6803,484){\makebox(0,0){\strut{}$1.4$}}%
|
||||
}%
|
||||
\gplgaddtomacro\gplfronttext{%
|
||||
\csname LTb\endcsname%%
|
||||
\put(209,2761){\rotatebox{-270}{\makebox(0,0){\strut{}$\frac{1}{N(\theta)} - \frac{1}{N(0)}$}}}%
|
||||
\put(4072,154){\makebox(0,0){\strut{}$1 - cos \theta$}}%
|
||||
}%
|
||||
\gplbacktext
|
||||
\put(0,0){\includegraphics[width={360.00bp},height={252.00bp}]{./main-gnuplottex-fig1}}%
|
||||
\gplfronttext
|
||||
\end{picture}%
|
||||
\endgroup
|
@ -0,0 +1,23 @@
|
||||
\relax
|
||||
\providecommand\babel@aux[2]{}
|
||||
\@nameuse{bbl@beforestart}
|
||||
\catcode `"\active
|
||||
\babel@aux{russian}{}
|
||||
\@writefile{toc}{\contentsline {paragraph}{Цель работы:}{1}{}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {section}{\numberline {1}Теория}{1}{}\protected@file@percent }
|
||||
\newlabel{delta_lambda}{{1}{1}}
|
||||
\newlabel{energy}{{2}{1}}
|
||||
\@writefile{toc}{\contentsline {section}{\numberline {2}Экспериментальная установка}{2}{}\protected@file@percent }
|
||||
\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces Экспериментальная установка\relax }}{2}{}\protected@file@percent }
|
||||
\providecommand*\caption@xref[2]{\@setref\relax\@undefined{#1}}
|
||||
\newlabel{setup}{{1}{2}}
|
||||
\@writefile{toc}{\contentsline {section}{\numberline {3}Обработка результатов}{2}{}\protected@file@percent }
|
||||
\newlabel{main_eq}{{3}{2}}
|
||||
\@writefile{toc}{\contentsline {section}{\numberline {4}Ход работы}{3}{}\protected@file@percent }
|
||||
\@writefile{lot}{\contentsline {table}{\numberline {1}{\ignorespaces Измерение $N(\theta )$\relax }}{3}{}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {section}{\numberline {5}Вывод}{3}{}\protected@file@percent }
|
||||
\@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces Графики для $\theta = 0 - 90^0$\relax }}{4}{}\protected@file@percent }
|
||||
\newlabel{graphs}{{2}{4}}
|
||||
\@writefile{lof}{\contentsline {figure}{\numberline {3}{\ignorespaces График зависимости $\frac {1}{N(\theta )} - \frac {1}{N(0)}$ от $1 - cos(\theta )$\relax }}{5}{}\protected@file@percent }
|
||||
\newlabel{graph}{{3}{5}}
|
||||
\gdef \@abspage@last{6}
|
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 4.6 MiB |
After Width: | Height: | Size: 4.0 MiB |
After Width: | Height: | Size: 3.8 MiB |
@ -0,0 +1,21 @@
|
||||
This is pdfTeX, Version 3.141592653-2.6-1.40.25 (TeX Live 2023/Arch Linux) (preloaded format=pdflatex 2023.8.26) 23 OCT 2023 10:44
|
||||
entering extended mode
|
||||
\write18 enabled.
|
||||
%&-line parsing enabled.
|
||||
**
|
||||
|
||||
! Emergency stop.
|
||||
<*>
|
||||
|
||||
End of file on the terminal!
|
||||
|
||||
|
||||
Here is how much of TeX's memory you used:
|
||||
3 strings out of 477459
|
||||
127 string characters out of 5832156
|
||||
1849388 words of memory out of 5000000
|
||||
20318 multiletter control sequences out of 15000+600000
|
||||
512287 words of font info for 32 fonts, out of 8000000 for 9000
|
||||
430 hyphenation exceptions out of 8191
|
||||
1i,0n,0p,1b,6s stack positions out of 10000i,1000n,20000p,200000b,200000s
|
||||
! ==> Fatal error occurred, no output PDF file produced!
|
After Width: | Height: | Size: 140 KiB |
After Width: | Height: | Size: 194 KiB |
After Width: | Height: | Size: 70 KiB |
@ -0,0 +1,31 @@
|
||||
\relax
|
||||
\providecommand\babel@aux[2]{}
|
||||
\@nameuse{bbl@beforestart}
|
||||
\catcode `"\active
|
||||
\babel@aux{russian}{}
|
||||
\@writefile{toc}{\contentsline {section}{\numberline {1}Аннотация}{1}{}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {section}{\numberline {2}Теоретические сведения}{1}{}\protected@file@percent }
|
||||
\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces Качественная картина результатов измерения упругого рассеяния электронов в аргоне\relax }}{1}{}\protected@file@percent }
|
||||
\providecommand*\caption@xref[2]{\@setref\relax\@undefined{#1}}
|
||||
\newlabel{fig:screenshot1}{{1}{1}}
|
||||
\newlabel{eq:sigma}{{1}{1}}
|
||||
\@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces Схема установки для измерения сечения рассеяния электронов в газах\relax }}{1}{}\protected@file@percent }
|
||||
\newlabel{fig:screenshot2}{{2}{1}}
|
||||
\newlabel{eq:at}{{2}{1}}
|
||||
\newlabel{eq:condition}{{3}{2}}
|
||||
\newlabel{eq:condition2}{{4}{2}}
|
||||
\newlabel{eq:radius}{{5}{2}}
|
||||
\newlabel{eq:atomPit}{{6}{2}}
|
||||
\newlabel{eq:VAH}{{7}{2}}
|
||||
\newlabel{eq:probable}{{8}{2}}
|
||||
\@writefile{toc}{\contentsline {section}{\numberline {3}Экспериментальная установка}{3}{}\protected@file@percent }
|
||||
\@writefile{lof}{\contentsline {figure}{\numberline {3}{\ignorespaces Схема экспериментальной установки\relax }}{3}{}\protected@file@percent }
|
||||
\newlabel{fig:screenshot3}{{3}{3}}
|
||||
\@writefile{toc}{\contentsline {section}{\numberline {4}Результаты измерений и обработка данных}{4}{}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subsection}{\numberline {4.1}Динамический метод}{4}{}\protected@file@percent }
|
||||
\newlabel{key}{{4.1}{4}}
|
||||
\newlabel{key}{{4.1}{4}}
|
||||
\newlabel{key}{{4.1}{4}}
|
||||
\@writefile{toc}{\contentsline {subsection}{\numberline {4.2}Статический метод}{4}{}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {section}{\numberline {5}Вывод}{4}{}\protected@file@percent }
|
||||
\gdef \@abspage@last{5}
|
@ -0,0 +1,701 @@
|
||||
This is pdfTeX, Version 3.141592653-2.6-1.40.25 (TeX Live 2023/Arch Linux) (preloaded format=pdflatex 2023.8.26) 3 DEC 2023 17:46
|
||||
entering extended mode
|
||||
restricted \write18 enabled.
|
||||
%&-line parsing enabled.
|
||||
**main.tex
|
||||
(./main.tex
|
||||
LaTeX2e <2022-11-01> patch level 1
|
||||
L3 programming layer <2023-02-22>
|
||||
(/usr/share/texmf-dist/tex/latex/base/article.cls
|
||||
Document Class: article 2022/07/02 v1.4n Standard LaTeX document class
|
||||
(/usr/share/texmf-dist/tex/latex/base/size10.clo
|
||||
File: size10.clo 2022/07/02 v1.4n Standard LaTeX file (size option)
|
||||
)
|
||||
\c@part=\count185
|
||||
\c@section=\count186
|
||||
\c@subsection=\count187
|
||||
\c@subsubsection=\count188
|
||||
\c@paragraph=\count189
|
||||
\c@subparagraph=\count190
|
||||
\c@figure=\count191
|
||||
\c@table=\count192
|
||||
\abovecaptionskip=\skip48
|
||||
\belowcaptionskip=\skip49
|
||||
\bibindent=\dimen140
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/geometry/geometry.sty
|
||||
Package: geometry 2020/01/02 v5.9 Page Geometry
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
Package: keyval 2022/05/29 v1.15 key=value parser (DPC)
|
||||
\KV@toks@=\toks16
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/generic/iftex/ifvtex.sty
|
||||
Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
|
||||
|
||||
(/usr/share/texmf-dist/tex/generic/iftex/iftex.sty
|
||||
Package: iftex 2022/02/03 v1.0f TeX engine tests
|
||||
))
|
||||
\Gm@cnth=\count193
|
||||
\Gm@cntv=\count194
|
||||
\c@Gm@tempcnt=\count195
|
||||
\Gm@bindingoffset=\dimen141
|
||||
\Gm@wd@mp=\dimen142
|
||||
\Gm@odd@mp=\dimen143
|
||||
\Gm@even@mp=\dimen144
|
||||
\Gm@layoutwidth=\dimen145
|
||||
\Gm@layoutheight=\dimen146
|
||||
\Gm@layouthoffset=\dimen147
|
||||
\Gm@layoutvoffset=\dimen148
|
||||
\Gm@dimlist=\toks17
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/cmap/cmap.sty
|
||||
Package: cmap 2021/02/06 v1.0j CMap support: searchable PDF
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/t2/mathtext.sty
|
||||
Package: mathtext 2018/04/14 v1.0 transparent text-and-math defs
|
||||
LaTeX Info: Redefining \halign on input line 121.
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/amsfonts/amssymb.sty
|
||||
Package: amssymb 2013/01/14 v3.01 AMS font symbols
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/amsfonts/amsfonts.sty
|
||||
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
|
||||
\@emptytoks=\toks18
|
||||
\symAMSa=\mathgroup4
|
||||
\symAMSb=\mathgroup5
|
||||
LaTeX Font Info: Redeclaring math symbol \hbar on input line 98.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
|
||||
(Font) U/euf/m/n --> U/euf/b/n on input line 106.
|
||||
))
|
||||
(/usr/share/texmf-dist/tex/latex/amsmath/amsmath.sty
|
||||
Package: amsmath 2022/04/08 v2.17n AMS math features
|
||||
\@mathmargin=\skip50
|
||||
|
||||
For additional information on amsmath, use the `?' option.
|
||||
(/usr/share/texmf-dist/tex/latex/amsmath/amstext.sty
|
||||
Package: amstext 2021/08/26 v2.01 AMS text
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/amsmath/amsgen.sty
|
||||
File: amsgen.sty 1999/11/30 v2.0 generic functions
|
||||
\@emptytoks=\toks19
|
||||
\ex@=\dimen149
|
||||
))
|
||||
(/usr/share/texmf-dist/tex/latex/amsmath/amsbsy.sty
|
||||
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
|
||||
\pmbraise@=\dimen150
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/amsmath/amsopn.sty
|
||||
Package: amsopn 2022/04/08 v2.04 operator names
|
||||
)
|
||||
\inf@bad=\count196
|
||||
LaTeX Info: Redefining \frac on input line 234.
|
||||
\uproot@=\count197
|
||||
\leftroot@=\count198
|
||||
LaTeX Info: Redefining \overline on input line 399.
|
||||
LaTeX Info: Redefining \colon on input line 410.
|
||||
\classnum@=\count199
|
||||
\DOTSCASE@=\count266
|
||||
LaTeX Info: Redefining \ldots on input line 496.
|
||||
LaTeX Info: Redefining \dots on input line 499.
|
||||
LaTeX Info: Redefining \cdots on input line 620.
|
||||
\Mathstrutbox@=\box51
|
||||
\strutbox@=\box52
|
||||
LaTeX Info: Redefining \big on input line 722.
|
||||
LaTeX Info: Redefining \Big on input line 723.
|
||||
LaTeX Info: Redefining \bigg on input line 724.
|
||||
LaTeX Info: Redefining \Bigg on input line 725.
|
||||
\big@size=\dimen151
|
||||
LaTeX Font Info: Redeclaring font encoding OML on input line 743.
|
||||
\symOMLletters=\mathgroup6
|
||||
LaTeX Font Info: Redeclaring font encoding OMS on input line 744.
|
||||
\symOMSletters=\mathgroup7
|
||||
\macc@depth=\count267
|
||||
LaTeX Info: Redefining \bmod on input line 905.
|
||||
LaTeX Info: Redefining \pmod on input line 910.
|
||||
LaTeX Info: Redefining \smash on input line 940.
|
||||
LaTeX Info: Redefining \relbar on input line 970.
|
||||
LaTeX Info: Redefining \Relbar on input line 971.
|
||||
\c@MaxMatrixCols=\count268
|
||||
\dotsspace@=\muskip16
|
||||
\c@parentequation=\count269
|
||||
\dspbrk@lvl=\count270
|
||||
\tag@help=\toks20
|
||||
\row@=\count271
|
||||
\column@=\count272
|
||||
\maxfields@=\count273
|
||||
\andhelp@=\toks21
|
||||
\eqnshift@=\dimen152
|
||||
\alignsep@=\dimen153
|
||||
\tagshift@=\dimen154
|
||||
\tagwidth@=\dimen155
|
||||
\totwidth@=\dimen156
|
||||
\lineht@=\dimen157
|
||||
\@envbody=\toks22
|
||||
\multlinegap=\skip51
|
||||
\multlinetaggap=\skip52
|
||||
\mathdisplay@stack=\toks23
|
||||
LaTeX Info: Redefining \[ on input line 2953.
|
||||
LaTeX Info: Redefining \] on input line 2954.
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/generic/babel/babel.sty
|
||||
Package: babel 2023/02/13 3.86 The Babel package
|
||||
\babel@savecnt=\count274
|
||||
\U@D=\dimen158
|
||||
\l@unhyphenated=\language12
|
||||
|
||||
(/usr/share/texmf-dist/tex/generic/babel/txtbabel.def)
|
||||
\bbl@readstream=\read2
|
||||
\bbl@dirlevel=\count275
|
||||
|
||||
(/usr/share/texmf-dist/tex/generic/babel-russian/russianb.ldf
|
||||
File: russianb.ldf 2021/01/10 1.3m Russian support for the Babel system
|
||||
Language: russian 2020/09/09 1.3k Russian support for the Babel system
|
||||
|
||||
|
||||
Package babel Warning: No Cyrillic font encoding has been loaded so far.
|
||||
(babel) A font encoding should be declared before babel.
|
||||
(babel) Default `T2A' encoding will be loaded on input line 78.
|
||||
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/cyrillic/t2aenc.def
|
||||
File: t2aenc.def 2022/06/11 v1.0j Cyrillic encoding definition file
|
||||
Now handling font encoding T2A ...
|
||||
... processing UTF-8 mapping file for font encoding T2A
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/base/t2aenc.dfu
|
||||
File: t2aenc.dfu 2022/06/07 v1.3c UTF-8 support
|
||||
defining Unicode char U+00A4 (decimal 164)
|
||||
defining Unicode char U+00A7 (decimal 167)
|
||||
defining Unicode char U+00AB (decimal 171)
|
||||
defining Unicode char U+00BB (decimal 187)
|
||||
defining Unicode char U+0131 (decimal 305)
|
||||
defining Unicode char U+0237 (decimal 567)
|
||||
defining Unicode char U+0400 (decimal 1024)
|
||||
defining Unicode char U+0401 (decimal 1025)
|
||||
defining Unicode char U+0402 (decimal 1026)
|
||||
defining Unicode char U+0403 (decimal 1027)
|
||||
defining Unicode char U+0404 (decimal 1028)
|
||||
defining Unicode char U+0405 (decimal 1029)
|
||||
defining Unicode char U+0406 (decimal 1030)
|
||||
defining Unicode char U+0407 (decimal 1031)
|
||||
defining Unicode char U+0408 (decimal 1032)
|
||||
defining Unicode char U+0409 (decimal 1033)
|
||||
defining Unicode char U+040A (decimal 1034)
|
||||
defining Unicode char U+040B (decimal 1035)
|
||||
defining Unicode char U+040C (decimal 1036)
|
||||
defining Unicode char U+040D (decimal 1037)
|
||||
defining Unicode char U+040E (decimal 1038)
|
||||
defining Unicode char U+040F (decimal 1039)
|
||||
defining Unicode char U+0410 (decimal 1040)
|
||||
defining Unicode char U+0411 (decimal 1041)
|
||||
defining Unicode char U+0412 (decimal 1042)
|
||||
defining Unicode char U+0413 (decimal 1043)
|
||||
defining Unicode char U+0414 (decimal 1044)
|
||||
defining Unicode char U+0415 (decimal 1045)
|
||||
defining Unicode char U+0416 (decimal 1046)
|
||||
defining Unicode char U+0417 (decimal 1047)
|
||||
defining Unicode char U+0418 (decimal 1048)
|
||||
defining Unicode char U+0419 (decimal 1049)
|
||||
defining Unicode char U+041A (decimal 1050)
|
||||
defining Unicode char U+041B (decimal 1051)
|
||||
defining Unicode char U+041C (decimal 1052)
|
||||
defining Unicode char U+041D (decimal 1053)
|
||||
defining Unicode char U+041E (decimal 1054)
|
||||
defining Unicode char U+041F (decimal 1055)
|
||||
defining Unicode char U+0420 (decimal 1056)
|
||||
defining Unicode char U+0421 (decimal 1057)
|
||||
defining Unicode char U+0422 (decimal 1058)
|
||||
defining Unicode char U+0423 (decimal 1059)
|
||||
defining Unicode char U+0424 (decimal 1060)
|
||||
defining Unicode char U+0425 (decimal 1061)
|
||||
defining Unicode char U+0426 (decimal 1062)
|
||||
defining Unicode char U+0427 (decimal 1063)
|
||||
defining Unicode char U+0428 (decimal 1064)
|
||||
defining Unicode char U+0429 (decimal 1065)
|
||||
defining Unicode char U+042A (decimal 1066)
|
||||
defining Unicode char U+042B (decimal 1067)
|
||||
defining Unicode char U+042C (decimal 1068)
|
||||
defining Unicode char U+042D (decimal 1069)
|
||||
defining Unicode char U+042E (decimal 1070)
|
||||
defining Unicode char U+042F (decimal 1071)
|
||||
defining Unicode char U+0430 (decimal 1072)
|
||||
defining Unicode char U+0431 (decimal 1073)
|
||||
defining Unicode char U+0432 (decimal 1074)
|
||||
defining Unicode char U+0433 (decimal 1075)
|
||||
defining Unicode char U+0434 (decimal 1076)
|
||||
defining Unicode char U+0435 (decimal 1077)
|
||||
defining Unicode char U+0436 (decimal 1078)
|
||||
defining Unicode char U+0437 (decimal 1079)
|
||||
defining Unicode char U+0438 (decimal 1080)
|
||||
defining Unicode char U+0439 (decimal 1081)
|
||||
defining Unicode char U+043A (decimal 1082)
|
||||
defining Unicode char U+043B (decimal 1083)
|
||||
defining Unicode char U+043C (decimal 1084)
|
||||
defining Unicode char U+043D (decimal 1085)
|
||||
defining Unicode char U+043E (decimal 1086)
|
||||
defining Unicode char U+043F (decimal 1087)
|
||||
defining Unicode char U+0440 (decimal 1088)
|
||||
defining Unicode char U+0441 (decimal 1089)
|
||||
defining Unicode char U+0442 (decimal 1090)
|
||||
defining Unicode char U+0443 (decimal 1091)
|
||||
defining Unicode char U+0444 (decimal 1092)
|
||||
defining Unicode char U+0445 (decimal 1093)
|
||||
defining Unicode char U+0446 (decimal 1094)
|
||||
defining Unicode char U+0447 (decimal 1095)
|
||||
defining Unicode char U+0448 (decimal 1096)
|
||||
defining Unicode char U+0449 (decimal 1097)
|
||||
defining Unicode char U+044A (decimal 1098)
|
||||
defining Unicode char U+044B (decimal 1099)
|
||||
defining Unicode char U+044C (decimal 1100)
|
||||
defining Unicode char U+044D (decimal 1101)
|
||||
defining Unicode char U+044E (decimal 1102)
|
||||
defining Unicode char U+044F (decimal 1103)
|
||||
defining Unicode char U+0450 (decimal 1104)
|
||||
defining Unicode char U+0451 (decimal 1105)
|
||||
defining Unicode char U+0452 (decimal 1106)
|
||||
defining Unicode char U+0453 (decimal 1107)
|
||||
defining Unicode char U+0454 (decimal 1108)
|
||||
defining Unicode char U+0455 (decimal 1109)
|
||||
defining Unicode char U+0456 (decimal 1110)
|
||||
defining Unicode char U+0457 (decimal 1111)
|
||||
defining Unicode char U+0458 (decimal 1112)
|
||||
defining Unicode char U+0459 (decimal 1113)
|
||||
defining Unicode char U+045A (decimal 1114)
|
||||
defining Unicode char U+045B (decimal 1115)
|
||||
defining Unicode char U+045C (decimal 1116)
|
||||
defining Unicode char U+045D (decimal 1117)
|
||||
defining Unicode char U+045E (decimal 1118)
|
||||
defining Unicode char U+045F (decimal 1119)
|
||||
defining Unicode char U+0490 (decimal 1168)
|
||||
defining Unicode char U+0491 (decimal 1169)
|
||||
defining Unicode char U+0492 (decimal 1170)
|
||||
defining Unicode char U+0493 (decimal 1171)
|
||||
defining Unicode char U+0496 (decimal 1174)
|
||||
defining Unicode char U+0497 (decimal 1175)
|
||||
defining Unicode char U+0498 (decimal 1176)
|
||||
defining Unicode char U+0499 (decimal 1177)
|
||||
defining Unicode char U+049A (decimal 1178)
|
||||
defining Unicode char U+049B (decimal 1179)
|
||||
defining Unicode char U+049C (decimal 1180)
|
||||
defining Unicode char U+049D (decimal 1181)
|
||||
defining Unicode char U+04A0 (decimal 1184)
|
||||
defining Unicode char U+04A1 (decimal 1185)
|
||||
defining Unicode char U+04A2 (decimal 1186)
|
||||
defining Unicode char U+04A3 (decimal 1187)
|
||||
defining Unicode char U+04A4 (decimal 1188)
|
||||
defining Unicode char U+04A5 (decimal 1189)
|
||||
defining Unicode char U+04AA (decimal 1194)
|
||||
defining Unicode char U+04AB (decimal 1195)
|
||||
defining Unicode char U+04AE (decimal 1198)
|
||||
defining Unicode char U+04AF (decimal 1199)
|
||||
defining Unicode char U+04B0 (decimal 1200)
|
||||
defining Unicode char U+04B1 (decimal 1201)
|
||||
defining Unicode char U+04B2 (decimal 1202)
|
||||
defining Unicode char U+04B3 (decimal 1203)
|
||||
defining Unicode char U+04B6 (decimal 1206)
|
||||
defining Unicode char U+04B7 (decimal 1207)
|
||||
defining Unicode char U+04B8 (decimal 1208)
|
||||
defining Unicode char U+04B9 (decimal 1209)
|
||||
defining Unicode char U+04BA (decimal 1210)
|
||||
defining Unicode char U+04BB (decimal 1211)
|
||||
defining Unicode char U+04C0 (decimal 1216)
|
||||
defining Unicode char U+04C1 (decimal 1217)
|
||||
defining Unicode char U+04C2 (decimal 1218)
|
||||
defining Unicode char U+04D0 (decimal 1232)
|
||||
defining Unicode char U+04D1 (decimal 1233)
|
||||
defining Unicode char U+04D2 (decimal 1234)
|
||||
defining Unicode char U+04D3 (decimal 1235)
|
||||
defining Unicode char U+04D4 (decimal 1236)
|
||||
defining Unicode char U+04D5 (decimal 1237)
|
||||
defining Unicode char U+04D6 (decimal 1238)
|
||||
defining Unicode char U+04D7 (decimal 1239)
|
||||
defining Unicode char U+04D8 (decimal 1240)
|
||||
defining Unicode char U+04D9 (decimal 1241)
|
||||
defining Unicode char U+04DA (decimal 1242)
|
||||
defining Unicode char U+04DB (decimal 1243)
|
||||
defining Unicode char U+04DC (decimal 1244)
|
||||
defining Unicode char U+04DD (decimal 1245)
|
||||
defining Unicode char U+04DE (decimal 1246)
|
||||
defining Unicode char U+04DF (decimal 1247)
|
||||
defining Unicode char U+04E2 (decimal 1250)
|
||||
defining Unicode char U+04E3 (decimal 1251)
|
||||
defining Unicode char U+04E4 (decimal 1252)
|
||||
defining Unicode char U+04E5 (decimal 1253)
|
||||
defining Unicode char U+04E6 (decimal 1254)
|
||||
defining Unicode char U+04E7 (decimal 1255)
|
||||
defining Unicode char U+04E8 (decimal 1256)
|
||||
defining Unicode char U+04E9 (decimal 1257)
|
||||
defining Unicode char U+04EC (decimal 1260)
|
||||
defining Unicode char U+04ED (decimal 1261)
|
||||
defining Unicode char U+04EE (decimal 1262)
|
||||
defining Unicode char U+04EF (decimal 1263)
|
||||
defining Unicode char U+04F0 (decimal 1264)
|
||||
defining Unicode char U+04F1 (decimal 1265)
|
||||
defining Unicode char U+04F2 (decimal 1266)
|
||||
defining Unicode char U+04F3 (decimal 1267)
|
||||
defining Unicode char U+04F4 (decimal 1268)
|
||||
defining Unicode char U+04F5 (decimal 1269)
|
||||
defining Unicode char U+04F8 (decimal 1272)
|
||||
defining Unicode char U+04F9 (decimal 1273)
|
||||
defining Unicode char U+200C (decimal 8204)
|
||||
defining Unicode char U+2013 (decimal 8211)
|
||||
defining Unicode char U+2014 (decimal 8212)
|
||||
defining Unicode char U+2018 (decimal 8216)
|
||||
defining Unicode char U+2019 (decimal 8217)
|
||||
defining Unicode char U+201C (decimal 8220)
|
||||
defining Unicode char U+201D (decimal 8221)
|
||||
defining Unicode char U+201E (decimal 8222)
|
||||
defining Unicode char U+2030 (decimal 8240)
|
||||
defining Unicode char U+2031 (decimal 8241)
|
||||
defining Unicode char U+2116 (decimal 8470)
|
||||
defining Unicode char U+2329 (decimal 9001)
|
||||
defining Unicode char U+3008 (decimal 12296)
|
||||
defining Unicode char U+232A (decimal 9002)
|
||||
defining Unicode char U+3009 (decimal 12297)
|
||||
defining Unicode char U+2423 (decimal 9251)
|
||||
defining Unicode char U+27E8 (decimal 10216)
|
||||
defining Unicode char U+27E9 (decimal 10217)
|
||||
defining Unicode char U+FB00 (decimal 64256)
|
||||
defining Unicode char U+FB01 (decimal 64257)
|
||||
defining Unicode char U+FB02 (decimal 64258)
|
||||
defining Unicode char U+FB03 (decimal 64259)
|
||||
defining Unicode char U+FB04 (decimal 64260)
|
||||
defining Unicode char U+FB05 (decimal 64261)
|
||||
defining Unicode char U+FB06 (decimal 64262)
|
||||
)
|
||||
\symT2Aletters=\mathgroup8
|
||||
)
|
||||
Package babel Info: Making " an active character on input line 124.
|
||||
Package babel Info: Default for \cyrdash is provided on input line 163.
|
||||
))
|
||||
(/usr/share/texmf-dist/tex/generic/babel/locale/ru/babel-russian.tex
|
||||
Package babel Info: Importing font and identification data for russian
|
||||
(babel) from babel-ru.ini. Reported on input line 11.
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/tools/indentfirst.sty
|
||||
Package: indentfirst 1995/11/23 v1.03 Indent first paragraph (DPC)
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty
|
||||
Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR)
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/graphics/graphics.sty
|
||||
Package: graphics 2022/03/10 v1.4e Standard LaTeX Graphics (DPC,SPQR)
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/graphics/trig.sty
|
||||
Package: trig 2021/08/11 v1.11 sin cos tan (DPC)
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
|
||||
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
|
||||
)
|
||||
Package graphics Info: Driver file: pdftex.def on input line 107.
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def
|
||||
File: pdftex.def 2022/09/22 v1.2b Graphics/color driver for pdftex
|
||||
))
|
||||
\Gin@req@height=\dimen159
|
||||
\Gin@req@width=\dimen160
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/multirow/multirow.sty
|
||||
Package: multirow 2021/03/15 v2.8 Span multiple rows of a table
|
||||
\multirow@colwidth=\skip53
|
||||
\multirow@cntb=\count276
|
||||
\multirow@dima=\skip54
|
||||
\bigstrutjot=\dimen161
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/wrapfig/wrapfig.sty
|
||||
\wrapoverhang=\dimen162
|
||||
\WF@size=\dimen163
|
||||
\c@WF@wrappedlines=\count277
|
||||
\WF@box=\box53
|
||||
\WF@everypar=\toks24
|
||||
Package: wrapfig 2003/01/31 v 3.6
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty
|
||||
Package: xcolor 2022/06/12 v2.14 LaTeX color extensions (UK)
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg
|
||||
File: color.cfg 2016/01/02 v1.6 sample color configuration
|
||||
)
|
||||
Package xcolor Info: Driver file: pdftex.def on input line 227.
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx)
|
||||
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1353.
|
||||
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1357.
|
||||
Package xcolor Info: Model `RGB' extended on input line 1369.
|
||||
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1371.
|
||||
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1372.
|
||||
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1373.
|
||||
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1374.
|
||||
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1375.
|
||||
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1376.
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/gnuplottex/gnuplottex.sty
|
||||
Package: gnuplottex 2020/03/19 v0.9.5 gnuplot graphs in LaTeX
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/moreverb/moreverb.sty
|
||||
Package: moreverb 2008/06/03 v2.3a `more' verbatim facilities
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/tools/verbatim.sty
|
||||
Package: verbatim 2022-07-02 v1.5u LaTeX2e package for verbatim enhancements
|
||||
\every@verbatim=\toks25
|
||||
\verbatim@line=\toks26
|
||||
\verbatim@in@stream=\read3
|
||||
)
|
||||
\tab@position=\count278
|
||||
\tab@size=\count279
|
||||
\listing@line=\count280
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/base/ifthen.sty
|
||||
Package: ifthen 2022/04/13 v1.1d Standard LaTeX ifthen package (DPC)
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/generic/catchfile/catchfile.sty
|
||||
Package: catchfile 2019/12/09 v1.8 Catch the contents of a file (HO)
|
||||
|
||||
(/usr/share/texmf-dist/tex/generic/infwarerr/infwarerr.sty
|
||||
Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
|
||||
Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO)
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/generic/etexcmds/etexcmds.sty
|
||||
Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
|
||||
))
|
||||
\verbatim@out=\write3
|
||||
runsystem(touch w18-test-20231231066.tex)...disabled (restricted).
|
||||
|
||||
runsystem(rm -f w18-test-20231231066.tex)...disabled (restricted).
|
||||
|
||||
runsystem(rm -f "main.gnuploterrors")...disabled (restricted).
|
||||
|
||||
|
||||
|
||||
Package gnuplottex Warning: Shell escape not enabled.
|
||||
(gnuplottex) You'll need to convert the graphs yourself.
|
||||
|
||||
\c@fignum=\count281
|
||||
) (/usr/share/texmf-dist/tex/latex/caption/subcaption.sty
|
||||
Package: subcaption 2023/02/19 v1.6 Sub-captions (AR)
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/caption/caption.sty
|
||||
Package: caption 2023/03/12 v3.6j Customizing captions (AR)
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/caption/caption3.sty
|
||||
Package: caption3 2023/03/12 v2.4 caption3 kernel (AR)
|
||||
\caption@tempdima=\dimen164
|
||||
\captionmargin=\dimen165
|
||||
\caption@leftmargin=\dimen166
|
||||
\caption@rightmargin=\dimen167
|
||||
\caption@width=\dimen168
|
||||
\caption@indent=\dimen169
|
||||
\caption@parindent=\dimen170
|
||||
\caption@hangindent=\dimen171
|
||||
Package caption Info: Standard document class detected.
|
||||
)
|
||||
\c@caption@flags=\count282
|
||||
\c@continuedfloat=\count283
|
||||
Package caption Info: wrapfig package is loaded.
|
||||
)
|
||||
Package caption Info: New subtype `subfigure' on input line 239.
|
||||
\c@subfigure=\count284
|
||||
Package caption Info: New subtype `subtable' on input line 239.
|
||||
\c@subtable=\count285
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
||||
File: l3backend-pdftex.def 2023-01-16 L3 backend support: PDF output (pdfTeX)
|
||||
\l__color_backend_stack_int=\count286
|
||||
\l__pdf_internal_box=\box54
|
||||
) (./main.aux
|
||||
LaTeX Font Info: Trying to load font information for T2A+cmr on input line 5
|
||||
.
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/cyrillic/t2acmr.fd
|
||||
File: t2acmr.fd 2001/08/11 v1.0a Computer Modern Cyrillic font definitions
|
||||
)<<t2a.cmap>>)
|
||||
\openout1 = `main.aux'.
|
||||
|
||||
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 17.
|
||||
LaTeX Font Info: ... okay on input line 17.
|
||||
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 17.
|
||||
LaTeX Font Info: ... okay on input line 17.
|
||||
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 17.
|
||||
LaTeX Font Info: ... okay on input line 17.
|
||||
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 17.
|
||||
LaTeX Font Info: ... okay on input line 17.
|
||||
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 17.
|
||||
LaTeX Font Info: ... okay on input line 17.
|
||||
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 17.
|
||||
LaTeX Font Info: ... okay on input line 17.
|
||||
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 17.
|
||||
LaTeX Font Info: ... okay on input line 17.
|
||||
LaTeX Font Info: Checking defaults for T2A/cmr/m/n on input line 17.
|
||||
LaTeX Font Info: ... okay on input line 17.
|
||||
|
||||
*geometry* driver: auto-detecting
|
||||
*geometry* detected driver: pdftex
|
||||
*geometry* verbose mode - [ preamble ] result:
|
||||
* driver: pdftex
|
||||
* paper: a4paper
|
||||
* layout: <same size as paper>
|
||||
* layoutoffset:(h,v)=(0.0pt,0.0pt)
|
||||
* modes:
|
||||
* h-part:(L,W,R)=(56.9055pt, 483.69687pt, 56.9055pt)
|
||||
* v-part:(T,H,B)=(56.9055pt, 702.78308pt, 85.35826pt)
|
||||
* \paperwidth=597.50787pt
|
||||
* \paperheight=845.04684pt
|
||||
* \textwidth=483.69687pt
|
||||
* \textheight=702.78308pt
|
||||
* \oddsidemargin=-15.36449pt
|
||||
* \evensidemargin=-15.36449pt
|
||||
* \topmargin=-52.36449pt
|
||||
* \headheight=12.0pt
|
||||
* \headsep=25.0pt
|
||||
* \topskip=10.0pt
|
||||
* \footskip=30.0pt
|
||||
* \marginparwidth=57.0pt
|
||||
* \marginparsep=11.0pt
|
||||
* \columnsep=10.0pt
|
||||
* \skip\footins=9.0pt plus 4.0pt minus 2.0pt
|
||||
* \hoffset=0.0pt
|
||||
* \voffset=0.0pt
|
||||
* \mag=1000
|
||||
* \@twocolumnfalse
|
||||
* \@twosidefalse
|
||||
* \@mparswitchfalse
|
||||
* \@reversemarginfalse
|
||||
* (1in=72.27pt=25.4mm, 1cm=28.453pt)
|
||||
|
||||
LaTeX Info: Redefining \th on input line 17.
|
||||
(/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
|
||||
[Loading MPS to PDF converter (version 2006.09.02).]
|
||||
\scratchcounter=\count287
|
||||
\scratchdimen=\dimen172
|
||||
\scratchbox=\box55
|
||||
\nofMPsegments=\count288
|
||||
\nofMParguments=\count289
|
||||
\everyMPshowfont=\toks27
|
||||
\MPscratchCnt=\count290
|
||||
\MPscratchDim=\dimen173
|
||||
\MPnumerator=\count291
|
||||
\makeMPintoPDFobject=\count292
|
||||
\everyMPtoPDFconversion=\toks28
|
||||
) (/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
||||
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
|
||||
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
|
||||
85.
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
|
||||
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
|
||||
e
|
||||
))
|
||||
Package caption Info: Begin \AtBeginDocument code.
|
||||
Package caption Info: End \AtBeginDocument code.
|
||||
[1
|
||||
|
||||
{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}]
|
||||
<Screenshot_1.png, id=11, 727.21687pt x 529.22719pt>
|
||||
File: Screenshot_1.png Graphic file (type png)
|
||||
<use Screenshot_1.png>
|
||||
Package pdftex.def Info: Screenshot_1.png used on input line 37.
|
||||
(pdftex.def) Requested size: 145.11053pt x 105.60129pt.
|
||||
<<ot1.cmap>><<oml.cmap>><<oms.cmap>><<omx.cmap>>
|
||||
LaTeX Font Info: Trying to load font information for U+msa on input line 41.
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/amsfonts/umsa.fd
|
||||
File: umsa.fd 2013/01/14 v3.01 AMS symbols A
|
||||
)
|
||||
LaTeX Font Info: Trying to load font information for U+msb on input line 41.
|
||||
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/amsfonts/umsb.fd
|
||||
File: umsb.fd 2013/01/14 v3.01 AMS symbols B
|
||||
)
|
||||
LaTeX Font Info: Trying to load font information for OML+cmr on input line 4
|
||||
1.
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/base/omlcmr.fd
|
||||
File: omlcmr.fd 2022/07/10 v2.5l Standard LaTeX font definitions
|
||||
)
|
||||
|
||||
LaTeX Font Warning: Font shape `OML/cmr/m/up' undefined
|
||||
(Font) using `OML/cmr/m/it' instead on input line 41.
|
||||
|
||||
LaTeX Font Info: Font shape `OML/cmr/m/it' in size <10> not available
|
||||
(Font) Font shape `OML/cmm/m/it' tried instead on input line 41.
|
||||
LaTeX Font Info: Font shape `OML/cmr/m/up' in size <7> not available
|
||||
(Font) Font shape `OML/cmm/m/it' tried instead on input line 41.
|
||||
LaTeX Font Info: Font shape `OML/cmr/m/up' in size <5> not available
|
||||
(Font) Font shape `OML/cmm/m/it' tried instead on input line 41.
|
||||
LaTeX Font Info: Trying to load font information for OMS+cmr on input line 4
|
||||
1.
|
||||
(/usr/share/texmf-dist/tex/latex/base/omscmr.fd
|
||||
File: omscmr.fd 2022/07/10 v2.5l Standard LaTeX font definitions
|
||||
)
|
||||
|
||||
LaTeX Font Warning: Font shape `OMS/cmr/m/up' undefined
|
||||
(Font) using `OMS/cmr/m/n' instead on input line 41.
|
||||
|
||||
LaTeX Font Info: Font shape `OMS/cmr/m/n' in size <10> not available
|
||||
(Font) Font shape `OMS/cmsy/m/n' tried instead on input line 41.
|
||||
LaTeX Font Info: Font shape `OMS/cmr/m/up' in size <7> not available
|
||||
(Font) Font shape `OMS/cmsy/m/n' tried instead on input line 41.
|
||||
LaTeX Font Info: Font shape `OMS/cmr/m/up' in size <5> not available
|
||||
(Font) Font shape `OMS/cmsy/m/n' tried instead on input line 41.
|
||||
|
||||
LaTeX Font Warning: Font shape `T2A/cmr/m/up' undefined
|
||||
(Font) using `T2A/cmr/m/n' instead on input line 41.
|
||||
|
||||
<Screenshot_2.png, id=17, 881.54344pt x 557.83406pt>
|
||||
File: Screenshot_2.png Graphic file (type png)
|
||||
<use Screenshot_2.png>
|
||||
Package pdftex.def Info: Screenshot_2.png used on input line 50.
|
||||
(pdftex.def) Requested size: 241.84843pt x 153.03456pt.
|
||||
[1 <./Screenshot_1.png> <./Screenshot_2.png>] [2]
|
||||
<Screenshot_3.png, id=36, 1163.84813pt x 423.83344pt>
|
||||
File: Screenshot_3.png Graphic file (type png)
|
||||
<use Screenshot_3.png>
|
||||
Package pdftex.def Info: Screenshot_3.png used on input line 110.
|
||||
(pdftex.def) Requested size: 483.69687pt x 176.1398pt.
|
||||
[3
|
||||
|
||||
<./Screenshot_3.png>]
|
||||
[4
|
||||
|
||||
] (./main.aux)
|
||||
|
||||
LaTeX Font Warning: Some font shapes were not available, defaults substituted.
|
||||
|
||||
|
||||
LaTeX Warning: Label(s) may have changed. Rerun to get cross-references right.
|
||||
|
||||
)
|
||||
Here is how much of TeX's memory you used:
|
||||
7928 strings out of 477459
|
||||
125656 string characters out of 5832156
|
||||
1860388 words of memory out of 5000000
|
||||
27983 multiletter control sequences out of 15000+600000
|
||||
524419 words of font info for 53 fonts, out of 8000000 for 9000
|
||||
430 hyphenation exceptions out of 8191
|
||||
67i,6n,77p,1573b,329s stack positions out of 10000i,1000n,20000p,200000b,200000s
|
||||
</home/nihonium/.texlive/texmf-var/fonts/pk/ljfour/lh/lh-t2a/labx1200.600pk>
|
||||
</home/nihonium/.texlive/texmf-var/fonts/pk/ljfour/lh/lh-t2a/larm0700.600pk> <
|
||||
/home/nihonium/.texlive/texmf-var/fonts/pk/ljfour/lh/lh-t2a/larm1000.600pk> </h
|
||||
ome/nihonium/.texlive/texmf-var/fonts/pk/ljfour/lh/lh-t2a/labx1440.600pk> </hom
|
||||
e/nihonium/.texlive/texmf-var/fonts/pk/ljfour/lh/lh-t2a/larm1728.600pk> </home/
|
||||
nihonium/.texlive/texmf-var/fonts/pk/ljfour/lh/lh-t2a/labx2074.600pk> </home/ni
|
||||
honium/.texlive/texmf-var/fonts/pk/ljfour/lh/lh-t2a/lacc1440.600pk> </home/niho
|
||||
nium/.texlive/texmf-var/fonts/pk/ljfour/lh/lh-t2a/lacc1728.600pk></usr/share/te
|
||||
xmf-dist/fonts/type1/public/amsfonts/cm/cmex10.pfb></usr/share/texmf-dist/fonts
|
||||
/type1/public/amsfonts/cm/cmmi10.pfb></usr/share/texmf-dist/fonts/type1/public/
|
||||
amsfonts/cm/cmmi7.pfb></usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr
|
||||
10.pfb></usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr7.pfb></usr/sha
|
||||
re/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb></usr/share/texmf-dist/
|
||||
fonts/type1/public/amsfonts/cm/cmsy7.pfb></usr/share/texmf-dist/fonts/type1/pub
|
||||
lic/amsfonts/symbols/msbm10.pfb>
|
||||
Output written on main.pdf (5 pages, 468028 bytes).
|
||||
PDF statistics:
|
||||
298 PDF objects out of 1000 (max. 8388607)
|
||||
69 compressed objects within 1 object stream
|
||||
0 named destinations out of 1000 (max. 500000)
|
||||
36 words of extra memory for PDF output out of 10000 (max. 10000000)
|
||||
|
After Width: | Height: | Size: 1.1 MiB |
@ -0,0 +1,33 @@
|
||||
\relax
|
||||
\providecommand\babel@aux[2]{}
|
||||
\@nameuse{bbl@beforestart}
|
||||
\catcode `"\active
|
||||
\providecommand\hyper@newdestlabel[2]{}
|
||||
\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument}
|
||||
\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined
|
||||
\global\let\oldnewlabel\newlabel
|
||||
\gdef\newlabel#1#2{\newlabelxx{#1}#2}
|
||||
\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}}
|
||||
\AtEndDocument{\ifx\hyper@anchor\@undefined
|
||||
\let\newlabel\oldnewlabel
|
||||
\fi}
|
||||
\fi}
|
||||
\global\let\hyper@last\relax
|
||||
\gdef\HyperFirstAtBeginDocument#1{#1}
|
||||
\providecommand\HyField@AuxAddToFields[1]{}
|
||||
\providecommand\HyField@AuxAddToCoFields[2]{}
|
||||
\babel@aux{russian}{}
|
||||
\newlabel{eq:dE}{{1}{1}{Теоретическое введение}{equation.0.1}{}}
|
||||
\newlabel{eq:resonans_omega}{{2}{1}{Теоретическое введение}{equation.0.2}{}}
|
||||
\newlabel{eq:gyromagnit}{{3}{1}{Теоретическое введение}{equation.0.3}{}}
|
||||
\newlabel{eq:def_g}{{4}{1}{Теоретическое введение}{equation.0.4}{}}
|
||||
\newlabel{eq:g_is}{{{$\star $}}{1}{Теоретическое введение}{AMS.3}{}}
|
||||
\@writefile{toc}{\contentsline {section}{\numberline {1}Экспериментальная установка}{2}{section.1}\protected@file@percent }
|
||||
\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces Схема установки.\relax }}{2}{figure.caption.4}\protected@file@percent }
|
||||
\providecommand*\caption@xref[2]{\@setref\relax\@undefined{#1}}
|
||||
\newlabel{fig:equip}{{1}{2}{Схема установки.\relax }{figure.caption.4}{}}
|
||||
\@writefile{lot}{\contentsline {table}{\numberline {1}{\ignorespaces Параметры катушек.\relax }}{3}{table.caption.6}\protected@file@percent }
|
||||
\newlabel{coil}{{1}{3}{Параметры катушек.\relax }{table.caption.6}{}}
|
||||
\@writefile{lot}{\contentsline {table}{\numberline {2}{\ignorespaces Калибровочные измерения.\relax }}{4}{table.caption.10}\protected@file@percent }
|
||||
\newlabel{table:field}{{2}{4}{Калибровочные измерения.\relax }{table.caption.10}{}}
|
||||
\gdef \@abspage@last{5}
|
@ -0,0 +1 @@
|
||||
\BOOKMARK [1][-]{section.1}{\376\377\004\055\004\072\004\101\004\077\004\065\004\100\004\070\004\074\004\065\004\075\004\102\004\060\004\073\004\114\004\075\004\060\004\117\000\040\004\103\004\101\004\102\004\060\004\075\004\076\004\062\004\072\004\060}{}% 1
|
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 49 KiB |
@ -0,0 +1,29 @@
|
||||
0 0
|
||||
2.31 0.0138
|
||||
5 0.033
|
||||
9.35 0.0755
|
||||
14.27 0.1237
|
||||
19.74 0.1665
|
||||
18.72 0.1634
|
||||
17.37 0.1530
|
||||
23.69 0.0618
|
||||
20.75 0.1655
|
||||
21.86 0.1530
|
||||
22.61 0.0861
|
||||
23.05 0.0668
|
||||
36.23 0.2514
|
||||
23.93 0.0622
|
||||
27.72 0.1228
|
||||
32.04 0.1997
|
||||
34.8 0.2428
|
||||
35.77 0.2501
|
||||
37.2 0.2492
|
||||
38.09 0.2488
|
||||
46.04 0.1923
|
||||
42.18 0.2096
|
||||
44.5 0.1957
|
||||
45.11 0.1939
|
||||
46.97 0.1937
|
||||
48.31 0.1991
|
||||
54.14 0.2414
|
||||
61.31 0.2849
|
After Width: | Height: | Size: 46 KiB |
@ -0,0 +1,30 @@
|
||||
0 0
|
||||
20.47 0.1614
|
||||
4.55 0.0126
|
||||
9.26 0.0563
|
||||
14.4 0.1103
|
||||
16.38 0.1297
|
||||
18.45 0.1493
|
||||
19.46 0.1560
|
||||
21.47 0.1553
|
||||
22.78 0.1334
|
||||
24.9 0.0204
|
||||
23.15 0.0504
|
||||
24.38 0.0222
|
||||
25.66 0.0230
|
||||
27.09 0.0355
|
||||
37.81 0.1901
|
||||
31.53 0.1205
|
||||
33.67 0.1596
|
||||
36.03 0.1877
|
||||
38.4 0.1895
|
||||
40.4 0.1705
|
||||
48.92 0.1154
|
||||
42.17 0.1558
|
||||
44.49 0.1350
|
||||
46.58 0.1207
|
||||
47.83 0.1165
|
||||
49.59 0.1167
|
||||
51.93 0.1268
|
||||
58.92 0.1740
|
||||
63.01 0.1794
|
After Width: | Height: | Size: 44 KiB |
@ -0,0 +1,29 @@
|
||||
0 0
|
||||
21.38 0.1462
|
||||
3.9 0.0014
|
||||
8.6 0.0246
|
||||
14.43 0.089
|
||||
18.85 0.133
|
||||
20.59 0.1443
|
||||
22.3 0.1438
|
||||
23.18 0.1314
|
||||
26.81 -0.0061
|
||||
24.62 0.0110
|
||||
25.73 -0.0013
|
||||
27.64 -0.0045
|
||||
28.85 0.0054
|
||||
30.07 0.0197
|
||||
38.42 0.1303
|
||||
32.77 0.0727
|
||||
35.37 0.1180
|
||||
37.15 0.1272
|
||||
39.51 0.1243
|
||||
40.86 0.1113
|
||||
51.16 0.0464
|
||||
45.49 0.0759
|
||||
48.06 0.0556
|
||||
50.49 0.0467
|
||||
52.26 0.0475
|
||||
53.84 0.0537
|
||||
57.52 0.0728
|
||||
63.84 0.0801
|
After Width: | Height: | Size: 46 KiB |
@ -0,0 +1,10 @@
|
||||
module Main where
|
||||
|
||||
main :: IO ()
|
||||
main = print_sigma
|
||||
|
||||
xs = [17, 16, 17]
|
||||
|
||||
mean_xs = (sum xs) / (length xs)
|
||||
|
||||
print_sigma = print $ sqrt $ (1 /6) *
|
@ -0,0 +1,767 @@
|
||||
This is pdfTeX, Version 3.141592653-2.6-1.40.25 (TeX Live 2023/Arch Linux) (preloaded format=pdflatex 2023.8.26) 27 NOV 2023 02:43
|
||||
entering extended mode
|
||||
\write18 enabled.
|
||||
%&-line parsing enabled.
|
||||
**main.tex
|
||||
(./main.tex
|
||||
LaTeX2e <2022-11-01> patch level 1
|
||||
L3 programming layer <2023-02-22>
|
||||
(/usr/share/texmf-dist/tex/latex/base/article.cls
|
||||
Document Class: article 2022/07/02 v1.4n Standard LaTeX document class
|
||||
(/usr/share/texmf-dist/tex/latex/base/size10.clo
|
||||
File: size10.clo 2022/07/02 v1.4n Standard LaTeX file (size option)
|
||||
)
|
||||
\c@part=\count185
|
||||
\c@section=\count186
|
||||
\c@subsection=\count187
|
||||
\c@subsubsection=\count188
|
||||
\c@paragraph=\count189
|
||||
\c@subparagraph=\count190
|
||||
\c@figure=\count191
|
||||
\c@table=\count192
|
||||
\abovecaptionskip=\skip48
|
||||
\belowcaptionskip=\skip49
|
||||
\bibindent=\dimen140
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/geometry/geometry.sty
|
||||
Package: geometry 2020/01/02 v5.9 Page Geometry
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
Package: keyval 2022/05/29 v1.15 key=value parser (DPC)
|
||||
\KV@toks@=\toks16
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/generic/iftex/ifvtex.sty
|
||||
Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
|
||||
|
||||
(/usr/share/texmf-dist/tex/generic/iftex/iftex.sty
|
||||
Package: iftex 2022/02/03 v1.0f TeX engine tests
|
||||
))
|
||||
\Gm@cnth=\count193
|
||||
\Gm@cntv=\count194
|
||||
\c@Gm@tempcnt=\count195
|
||||
\Gm@bindingoffset=\dimen141
|
||||
\Gm@wd@mp=\dimen142
|
||||
\Gm@odd@mp=\dimen143
|
||||
\Gm@even@mp=\dimen144
|
||||
\Gm@layoutwidth=\dimen145
|
||||
\Gm@layoutheight=\dimen146
|
||||
\Gm@layouthoffset=\dimen147
|
||||
\Gm@layoutvoffset=\dimen148
|
||||
\Gm@dimlist=\toks17
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/cmap/cmap.sty
|
||||
Package: cmap 2021/02/06 v1.0j CMap support: searchable PDF
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/t2/mathtext.sty
|
||||
Package: mathtext 2018/04/14 v1.0 transparent text-and-math defs
|
||||
LaTeX Info: Redefining \halign on input line 121.
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/amsfonts/amssymb.sty
|
||||
Package: amssymb 2013/01/14 v3.01 AMS font symbols
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/amsfonts/amsfonts.sty
|
||||
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
|
||||
\@emptytoks=\toks18
|
||||
\symAMSa=\mathgroup4
|
||||
\symAMSb=\mathgroup5
|
||||
LaTeX Font Info: Redeclaring math symbol \hbar on input line 98.
|
||||
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
|
||||
(Font) U/euf/m/n --> U/euf/b/n on input line 106.
|
||||
))
|
||||
(/usr/share/texmf-dist/tex/latex/amsmath/amsmath.sty
|
||||
Package: amsmath 2022/04/08 v2.17n AMS math features
|
||||
\@mathmargin=\skip50
|
||||
|
||||
For additional information on amsmath, use the `?' option.
|
||||
(/usr/share/texmf-dist/tex/latex/amsmath/amstext.sty
|
||||
Package: amstext 2021/08/26 v2.01 AMS text
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/amsmath/amsgen.sty
|
||||
File: amsgen.sty 1999/11/30 v2.0 generic functions
|
||||
\@emptytoks=\toks19
|
||||
\ex@=\dimen149
|
||||
))
|
||||
(/usr/share/texmf-dist/tex/latex/amsmath/amsbsy.sty
|
||||
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
|
||||
\pmbraise@=\dimen150
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/amsmath/amsopn.sty
|
||||
Package: amsopn 2022/04/08 v2.04 operator names
|
||||
)
|
||||
\inf@bad=\count196
|
||||
LaTeX Info: Redefining \frac on input line 234.
|
||||
\uproot@=\count197
|
||||
\leftroot@=\count198
|
||||
LaTeX Info: Redefining \overline on input line 399.
|
||||
LaTeX Info: Redefining \colon on input line 410.
|
||||
\classnum@=\count199
|
||||
\DOTSCASE@=\count266
|
||||
LaTeX Info: Redefining \ldots on input line 496.
|
||||
LaTeX Info: Redefining \dots on input line 499.
|
||||
LaTeX Info: Redefining \cdots on input line 620.
|
||||
\Mathstrutbox@=\box51
|
||||
\strutbox@=\box52
|
||||
LaTeX Info: Redefining \big on input line 722.
|
||||
LaTeX Info: Redefining \Big on input line 723.
|
||||
LaTeX Info: Redefining \bigg on input line 724.
|
||||
LaTeX Info: Redefining \Bigg on input line 725.
|
||||
\big@size=\dimen151
|
||||
LaTeX Font Info: Redeclaring font encoding OML on input line 743.
|
||||
\symOMLletters=\mathgroup6
|
||||
LaTeX Font Info: Redeclaring font encoding OMS on input line 744.
|
||||
\symOMSletters=\mathgroup7
|
||||
\macc@depth=\count267
|
||||
LaTeX Info: Redefining \bmod on input line 905.
|
||||
LaTeX Info: Redefining \pmod on input line 910.
|
||||
LaTeX Info: Redefining \smash on input line 940.
|
||||
LaTeX Info: Redefining \relbar on input line 970.
|
||||
LaTeX Info: Redefining \Relbar on input line 971.
|
||||
\c@MaxMatrixCols=\count268
|
||||
\dotsspace@=\muskip16
|
||||
\c@parentequation=\count269
|
||||
\dspbrk@lvl=\count270
|
||||
\tag@help=\toks20
|
||||
\row@=\count271
|
||||
\column@=\count272
|
||||
\maxfields@=\count273
|
||||
\andhelp@=\toks21
|
||||
\eqnshift@=\dimen152
|
||||
\alignsep@=\dimen153
|
||||
\tagshift@=\dimen154
|
||||
\tagwidth@=\dimen155
|
||||
\totwidth@=\dimen156
|
||||
\lineht@=\dimen157
|
||||
\@envbody=\toks22
|
||||
\multlinegap=\skip51
|
||||
\multlinetaggap=\skip52
|
||||
\mathdisplay@stack=\toks23
|
||||
LaTeX Info: Redefining \[ on input line 2953.
|
||||
LaTeX Info: Redefining \] on input line 2954.
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/generic/babel/babel.sty
|
||||
Package: babel 2023/02/13 3.86 The Babel package
|
||||
\babel@savecnt=\count274
|
||||
\U@D=\dimen158
|
||||
\l@unhyphenated=\language12
|
||||
|
||||
(/usr/share/texmf-dist/tex/generic/babel/txtbabel.def)
|
||||
\bbl@readstream=\read2
|
||||
\bbl@dirlevel=\count275
|
||||
|
||||
(/usr/share/texmf-dist/tex/generic/babel-russian/russianb.ldf
|
||||
File: russianb.ldf 2021/01/10 1.3m Russian support for the Babel system
|
||||
Language: russian 2020/09/09 1.3k Russian support for the Babel system
|
||||
|
||||
|
||||
Package babel Warning: No Cyrillic font encoding has been loaded so far.
|
||||
(babel) A font encoding should be declared before babel.
|
||||
(babel) Default `T2A' encoding will be loaded on input line 78.
|
||||
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/cyrillic/t2aenc.def
|
||||
File: t2aenc.def 2022/06/11 v1.0j Cyrillic encoding definition file
|
||||
Now handling font encoding T2A ...
|
||||
... processing UTF-8 mapping file for font encoding T2A
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/base/t2aenc.dfu
|
||||
File: t2aenc.dfu 2022/06/07 v1.3c UTF-8 support
|
||||
defining Unicode char U+00A4 (decimal 164)
|
||||
defining Unicode char U+00A7 (decimal 167)
|
||||
defining Unicode char U+00AB (decimal 171)
|
||||
defining Unicode char U+00BB (decimal 187)
|
||||
defining Unicode char U+0131 (decimal 305)
|
||||
defining Unicode char U+0237 (decimal 567)
|
||||
defining Unicode char U+0400 (decimal 1024)
|
||||
defining Unicode char U+0401 (decimal 1025)
|
||||
defining Unicode char U+0402 (decimal 1026)
|
||||
defining Unicode char U+0403 (decimal 1027)
|
||||
defining Unicode char U+0404 (decimal 1028)
|
||||
defining Unicode char U+0405 (decimal 1029)
|
||||
defining Unicode char U+0406 (decimal 1030)
|
||||
defining Unicode char U+0407 (decimal 1031)
|
||||
defining Unicode char U+0408 (decimal 1032)
|
||||
defining Unicode char U+0409 (decimal 1033)
|
||||
defining Unicode char U+040A (decimal 1034)
|
||||
defining Unicode char U+040B (decimal 1035)
|
||||
defining Unicode char U+040C (decimal 1036)
|
||||
defining Unicode char U+040D (decimal 1037)
|
||||
defining Unicode char U+040E (decimal 1038)
|
||||
defining Unicode char U+040F (decimal 1039)
|
||||
defining Unicode char U+0410 (decimal 1040)
|
||||
defining Unicode char U+0411 (decimal 1041)
|
||||
defining Unicode char U+0412 (decimal 1042)
|
||||
defining Unicode char U+0413 (decimal 1043)
|
||||
defining Unicode char U+0414 (decimal 1044)
|
||||
defining Unicode char U+0415 (decimal 1045)
|
||||
defining Unicode char U+0416 (decimal 1046)
|
||||
defining Unicode char U+0417 (decimal 1047)
|
||||
defining Unicode char U+0418 (decimal 1048)
|
||||
defining Unicode char U+0419 (decimal 1049)
|
||||
defining Unicode char U+041A (decimal 1050)
|
||||
defining Unicode char U+041B (decimal 1051)
|
||||
defining Unicode char U+041C (decimal 1052)
|
||||
defining Unicode char U+041D (decimal 1053)
|
||||
defining Unicode char U+041E (decimal 1054)
|
||||
defining Unicode char U+041F (decimal 1055)
|
||||
defining Unicode char U+0420 (decimal 1056)
|
||||
defining Unicode char U+0421 (decimal 1057)
|
||||
defining Unicode char U+0422 (decimal 1058)
|
||||
defining Unicode char U+0423 (decimal 1059)
|
||||
defining Unicode char U+0424 (decimal 1060)
|
||||
defining Unicode char U+0425 (decimal 1061)
|
||||
defining Unicode char U+0426 (decimal 1062)
|
||||
defining Unicode char U+0427 (decimal 1063)
|
||||
defining Unicode char U+0428 (decimal 1064)
|
||||
defining Unicode char U+0429 (decimal 1065)
|
||||
defining Unicode char U+042A (decimal 1066)
|
||||
defining Unicode char U+042B (decimal 1067)
|
||||
defining Unicode char U+042C (decimal 1068)
|
||||
defining Unicode char U+042D (decimal 1069)
|
||||
defining Unicode char U+042E (decimal 1070)
|
||||
defining Unicode char U+042F (decimal 1071)
|
||||
defining Unicode char U+0430 (decimal 1072)
|
||||
defining Unicode char U+0431 (decimal 1073)
|
||||
defining Unicode char U+0432 (decimal 1074)
|
||||
defining Unicode char U+0433 (decimal 1075)
|
||||
defining Unicode char U+0434 (decimal 1076)
|
||||
defining Unicode char U+0435 (decimal 1077)
|
||||
defining Unicode char U+0436 (decimal 1078)
|
||||
defining Unicode char U+0437 (decimal 1079)
|
||||
defining Unicode char U+0438 (decimal 1080)
|
||||
defining Unicode char U+0439 (decimal 1081)
|
||||
defining Unicode char U+043A (decimal 1082)
|
||||
defining Unicode char U+043B (decimal 1083)
|
||||
defining Unicode char U+043C (decimal 1084)
|
||||
defining Unicode char U+043D (decimal 1085)
|
||||
defining Unicode char U+043E (decimal 1086)
|
||||
defining Unicode char U+043F (decimal 1087)
|
||||
defining Unicode char U+0440 (decimal 1088)
|
||||
defining Unicode char U+0441 (decimal 1089)
|
||||
defining Unicode char U+0442 (decimal 1090)
|
||||
defining Unicode char U+0443 (decimal 1091)
|
||||
defining Unicode char U+0444 (decimal 1092)
|
||||
defining Unicode char U+0445 (decimal 1093)
|
||||
defining Unicode char U+0446 (decimal 1094)
|
||||
defining Unicode char U+0447 (decimal 1095)
|
||||
defining Unicode char U+0448 (decimal 1096)
|
||||
defining Unicode char U+0449 (decimal 1097)
|
||||
defining Unicode char U+044A (decimal 1098)
|
||||
defining Unicode char U+044B (decimal 1099)
|
||||
defining Unicode char U+044C (decimal 1100)
|
||||
defining Unicode char U+044D (decimal 1101)
|
||||
defining Unicode char U+044E (decimal 1102)
|
||||
defining Unicode char U+044F (decimal 1103)
|
||||
defining Unicode char U+0450 (decimal 1104)
|
||||
defining Unicode char U+0451 (decimal 1105)
|
||||
defining Unicode char U+0452 (decimal 1106)
|
||||
defining Unicode char U+0453 (decimal 1107)
|
||||
defining Unicode char U+0454 (decimal 1108)
|
||||
defining Unicode char U+0455 (decimal 1109)
|
||||
defining Unicode char U+0456 (decimal 1110)
|
||||
defining Unicode char U+0457 (decimal 1111)
|
||||
defining Unicode char U+0458 (decimal 1112)
|
||||
defining Unicode char U+0459 (decimal 1113)
|
||||
defining Unicode char U+045A (decimal 1114)
|
||||
defining Unicode char U+045B (decimal 1115)
|
||||
defining Unicode char U+045C (decimal 1116)
|
||||
defining Unicode char U+045D (decimal 1117)
|
||||
defining Unicode char U+045E (decimal 1118)
|
||||
defining Unicode char U+045F (decimal 1119)
|
||||
defining Unicode char U+0490 (decimal 1168)
|
||||
defining Unicode char U+0491 (decimal 1169)
|
||||
defining Unicode char U+0492 (decimal 1170)
|
||||
defining Unicode char U+0493 (decimal 1171)
|
||||
defining Unicode char U+0496 (decimal 1174)
|
||||
defining Unicode char U+0497 (decimal 1175)
|
||||
defining Unicode char U+0498 (decimal 1176)
|
||||
defining Unicode char U+0499 (decimal 1177)
|
||||
defining Unicode char U+049A (decimal 1178)
|
||||
defining Unicode char U+049B (decimal 1179)
|
||||
defining Unicode char U+049C (decimal 1180)
|
||||
defining Unicode char U+049D (decimal 1181)
|
||||
defining Unicode char U+04A0 (decimal 1184)
|
||||
defining Unicode char U+04A1 (decimal 1185)
|
||||
defining Unicode char U+04A2 (decimal 1186)
|
||||
defining Unicode char U+04A3 (decimal 1187)
|
||||
defining Unicode char U+04A4 (decimal 1188)
|
||||
defining Unicode char U+04A5 (decimal 1189)
|
||||
defining Unicode char U+04AA (decimal 1194)
|
||||
defining Unicode char U+04AB (decimal 1195)
|
||||
defining Unicode char U+04AE (decimal 1198)
|
||||
defining Unicode char U+04AF (decimal 1199)
|
||||
defining Unicode char U+04B0 (decimal 1200)
|
||||
defining Unicode char U+04B1 (decimal 1201)
|
||||
defining Unicode char U+04B2 (decimal 1202)
|
||||
defining Unicode char U+04B3 (decimal 1203)
|
||||
defining Unicode char U+04B6 (decimal 1206)
|
||||
defining Unicode char U+04B7 (decimal 1207)
|
||||
defining Unicode char U+04B8 (decimal 1208)
|
||||
defining Unicode char U+04B9 (decimal 1209)
|
||||
defining Unicode char U+04BA (decimal 1210)
|
||||
defining Unicode char U+04BB (decimal 1211)
|
||||
defining Unicode char U+04C0 (decimal 1216)
|
||||
defining Unicode char U+04C1 (decimal 1217)
|
||||
defining Unicode char U+04C2 (decimal 1218)
|
||||
defining Unicode char U+04D0 (decimal 1232)
|
||||
defining Unicode char U+04D1 (decimal 1233)
|
||||
defining Unicode char U+04D2 (decimal 1234)
|
||||
defining Unicode char U+04D3 (decimal 1235)
|
||||
defining Unicode char U+04D4 (decimal 1236)
|
||||
defining Unicode char U+04D5 (decimal 1237)
|
||||
defining Unicode char U+04D6 (decimal 1238)
|
||||
defining Unicode char U+04D7 (decimal 1239)
|
||||
defining Unicode char U+04D8 (decimal 1240)
|
||||
defining Unicode char U+04D9 (decimal 1241)
|
||||
defining Unicode char U+04DA (decimal 1242)
|
||||
defining Unicode char U+04DB (decimal 1243)
|
||||
defining Unicode char U+04DC (decimal 1244)
|
||||
defining Unicode char U+04DD (decimal 1245)
|
||||
defining Unicode char U+04DE (decimal 1246)
|
||||
defining Unicode char U+04DF (decimal 1247)
|
||||
defining Unicode char U+04E2 (decimal 1250)
|
||||
defining Unicode char U+04E3 (decimal 1251)
|
||||
defining Unicode char U+04E4 (decimal 1252)
|
||||
defining Unicode char U+04E5 (decimal 1253)
|
||||
defining Unicode char U+04E6 (decimal 1254)
|
||||
defining Unicode char U+04E7 (decimal 1255)
|
||||
defining Unicode char U+04E8 (decimal 1256)
|
||||
defining Unicode char U+04E9 (decimal 1257)
|
||||
defining Unicode char U+04EC (decimal 1260)
|
||||
defining Unicode char U+04ED (decimal 1261)
|
||||
defining Unicode char U+04EE (decimal 1262)
|
||||
defining Unicode char U+04EF (decimal 1263)
|
||||
defining Unicode char U+04F0 (decimal 1264)
|
||||
defining Unicode char U+04F1 (decimal 1265)
|
||||
defining Unicode char U+04F2 (decimal 1266)
|
||||
defining Unicode char U+04F3 (decimal 1267)
|
||||
defining Unicode char U+04F4 (decimal 1268)
|
||||
defining Unicode char U+04F5 (decimal 1269)
|
||||
defining Unicode char U+04F8 (decimal 1272)
|
||||
defining Unicode char U+04F9 (decimal 1273)
|
||||
defining Unicode char U+200C (decimal 8204)
|
||||
defining Unicode char U+2013 (decimal 8211)
|
||||
defining Unicode char U+2014 (decimal 8212)
|
||||
defining Unicode char U+2018 (decimal 8216)
|
||||
defining Unicode char U+2019 (decimal 8217)
|
||||
defining Unicode char U+201C (decimal 8220)
|
||||
defining Unicode char U+201D (decimal 8221)
|
||||
defining Unicode char U+201E (decimal 8222)
|
||||
defining Unicode char U+2030 (decimal 8240)
|
||||
defining Unicode char U+2031 (decimal 8241)
|
||||
defining Unicode char U+2116 (decimal 8470)
|
||||
defining Unicode char U+2329 (decimal 9001)
|
||||
defining Unicode char U+3008 (decimal 12296)
|
||||
defining Unicode char U+232A (decimal 9002)
|
||||
defining Unicode char U+3009 (decimal 12297)
|
||||
defining Unicode char U+2423 (decimal 9251)
|
||||
defining Unicode char U+27E8 (decimal 10216)
|
||||
defining Unicode char U+27E9 (decimal 10217)
|
||||
defining Unicode char U+FB00 (decimal 64256)
|
||||
defining Unicode char U+FB01 (decimal 64257)
|
||||
defining Unicode char U+FB02 (decimal 64258)
|
||||
defining Unicode char U+FB03 (decimal 64259)
|
||||
defining Unicode char U+FB04 (decimal 64260)
|
||||
defining Unicode char U+FB05 (decimal 64261)
|
||||
defining Unicode char U+FB06 (decimal 64262)
|
||||
)
|
||||
\symT2Aletters=\mathgroup8
|
||||
)
|
||||
Package babel Info: Making " an active character on input line 124.
|
||||
Package babel Info: Default for \cyrdash is provided on input line 163.
|
||||
))
|
||||
(/usr/share/texmf-dist/tex/generic/babel/locale/ru/babel-russian.tex
|
||||
Package babel Info: Importing font and identification data for russian
|
||||
(babel) from babel-ru.ini. Reported on input line 11.
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/tools/indentfirst.sty
|
||||
Package: indentfirst 1995/11/23 v1.03 Indent first paragraph (DPC)
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty
|
||||
Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR)
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/graphics/graphics.sty
|
||||
Package: graphics 2022/03/10 v1.4e Standard LaTeX Graphics (DPC,SPQR)
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/graphics/trig.sty
|
||||
Package: trig 2021/08/11 v1.11 sin cos tan (DPC)
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
|
||||
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
|
||||
)
|
||||
Package graphics Info: Driver file: pdftex.def on input line 107.
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def
|
||||
File: pdftex.def 2022/09/22 v1.2b Graphics/color driver for pdftex
|
||||
))
|
||||
\Gin@req@height=\dimen159
|
||||
\Gin@req@width=\dimen160
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/multirow/multirow.sty
|
||||
Package: multirow 2021/03/15 v2.8 Span multiple rows of a table
|
||||
\multirow@colwidth=\skip53
|
||||
\multirow@cntb=\count276
|
||||
\multirow@dima=\skip54
|
||||
\bigstrutjot=\dimen161
|
||||
)
|
||||
\bibdata{bib}
|
||||
No file main.bbl.
|
||||
(/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty
|
||||
Package: xcolor 2022/06/12 v2.14 LaTeX color extensions (UK)
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg
|
||||
File: color.cfg 2016/01/02 v1.6 sample color configuration
|
||||
)
|
||||
Package xcolor Info: Driver file: pdftex.def on input line 227.
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx)
|
||||
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1353.
|
||||
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1357.
|
||||
Package xcolor Info: Model `RGB' extended on input line 1369.
|
||||
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1371.
|
||||
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1372.
|
||||
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1373.
|
||||
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1374.
|
||||
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1375.
|
||||
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1376.
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/gnuplottex/gnuplottex.sty
|
||||
Package: gnuplottex 2020/03/19 v0.9.5 gnuplot graphs in LaTeX
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/moreverb/moreverb.sty
|
||||
Package: moreverb 2008/06/03 v2.3a `more' verbatim facilities
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/tools/verbatim.sty
|
||||
Package: verbatim 2022-07-02 v1.5u LaTeX2e package for verbatim enhancements
|
||||
\every@verbatim=\toks24
|
||||
\verbatim@line=\toks25
|
||||
\verbatim@in@stream=\read3
|
||||
)
|
||||
\tab@position=\count277
|
||||
\tab@size=\count278
|
||||
\listing@line=\count279
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/base/ifthen.sty
|
||||
Package: ifthen 2022/04/13 v1.1d Standard LaTeX ifthen package (DPC)
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/generic/catchfile/catchfile.sty
|
||||
Package: catchfile 2019/12/09 v1.8 Catch the contents of a file (HO)
|
||||
|
||||
(/usr/share/texmf-dist/tex/generic/infwarerr/infwarerr.sty
|
||||
Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
|
||||
Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO)
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/generic/etexcmds/etexcmds.sty
|
||||
Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
|
||||
))
|
||||
\verbatim@out=\write3
|
||||
runsystem(touch w18-test-20231127163.tex)...executed.
|
||||
|
||||
runsystem(rm -f w18-test-20231127163.tex)...executed.
|
||||
|
||||
runsystem(rm -f "main.gnuploterrors")...executed.
|
||||
|
||||
Package gnuplottex Info: Automatically converting gnuplot files on input line 1
|
||||
12.
|
||||
\c@fignum=\count280
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/caption/subcaption.sty
|
||||
Package: subcaption 2023/02/19 v1.6 Sub-captions (AR)
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/caption/caption.sty
|
||||
Package: caption 2023/03/12 v3.6j Customizing captions (AR)
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/caption/caption3.sty
|
||||
Package: caption3 2023/03/12 v2.4 caption3 kernel (AR)
|
||||
\caption@tempdima=\dimen162
|
||||
\captionmargin=\dimen163
|
||||
\caption@leftmargin=\dimen164
|
||||
\caption@rightmargin=\dimen165
|
||||
\caption@width=\dimen166
|
||||
\caption@indent=\dimen167
|
||||
\caption@parindent=\dimen168
|
||||
\caption@hangindent=\dimen169
|
||||
Package caption Info: Standard document class detected.
|
||||
)
|
||||
\c@caption@flags=\count281
|
||||
\c@continuedfloat=\count282
|
||||
)
|
||||
Package caption Info: New subtype `subfigure' on input line 239.
|
||||
\c@subfigure=\count283
|
||||
Package caption Info: New subtype `subtable' on input line 239.
|
||||
\c@subtable=\count284
|
||||
)
|
||||
(/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
||||
File: l3backend-pdftex.def 2023-01-16 L3 backend support: PDF output (pdfTeX)
|
||||
\l__color_backend_stack_int=\count285
|
||||
\l__pdf_internal_box=\box53
|
||||
) (./main.aux
|
||||
LaTeX Font Info: Trying to load font information for T2A+cmr on input line 5
|
||||
.
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/cyrillic/t2acmr.fd
|
||||
File: t2acmr.fd 2001/08/11 v1.0a Computer Modern Cyrillic font definitions
|
||||
)<<t2a.cmap>>
|
||||
|
||||
LaTeX Warning: Label `key' multiply defined.
|
||||
|
||||
|
||||
LaTeX Warning: Label `key' multiply defined.
|
||||
|
||||
|
||||
LaTeX Warning: Label `key' multiply defined.
|
||||
|
||||
|
||||
LaTeX Warning: Label `key' multiply defined.
|
||||
|
||||
)
|
||||
\openout1 = `main.aux'.
|
||||
|
||||
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 18.
|
||||
LaTeX Font Info: ... okay on input line 18.
|
||||
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 18.
|
||||
LaTeX Font Info: ... okay on input line 18.
|
||||
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 18.
|
||||
LaTeX Font Info: ... okay on input line 18.
|
||||
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 18.
|
||||
LaTeX Font Info: ... okay on input line 18.
|
||||
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 18.
|
||||
LaTeX Font Info: ... okay on input line 18.
|
||||
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 18.
|
||||
LaTeX Font Info: ... okay on input line 18.
|
||||
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 18.
|
||||
LaTeX Font Info: ... okay on input line 18.
|
||||
LaTeX Font Info: Checking defaults for T2A/cmr/m/n on input line 18.
|
||||
LaTeX Font Info: ... okay on input line 18.
|
||||
|
||||
*geometry* driver: auto-detecting
|
||||
*geometry* detected driver: pdftex
|
||||
*geometry* verbose mode - [ preamble ] result:
|
||||
* driver: pdftex
|
||||
* paper: a4paper
|
||||
* layout: <same size as paper>
|
||||
* layoutoffset:(h,v)=(0.0pt,0.0pt)
|
||||
* modes:
|
||||
* h-part:(L,W,R)=(56.9055pt, 483.69687pt, 56.9055pt)
|
||||
* v-part:(T,H,B)=(56.9055pt, 702.78308pt, 85.35826pt)
|
||||
* \paperwidth=597.50787pt
|
||||
* \paperheight=845.04684pt
|
||||
* \textwidth=483.69687pt
|
||||
* \textheight=702.78308pt
|
||||
* \oddsidemargin=-15.36449pt
|
||||
* \evensidemargin=-15.36449pt
|
||||
* \topmargin=-52.36449pt
|
||||
* \headheight=12.0pt
|
||||
* \headsep=25.0pt
|
||||
* \topskip=10.0pt
|
||||
* \footskip=30.0pt
|
||||
* \marginparwidth=57.0pt
|
||||
* \marginparsep=11.0pt
|
||||
* \columnsep=10.0pt
|
||||
* \skip\footins=9.0pt plus 4.0pt minus 2.0pt
|
||||
* \hoffset=0.0pt
|
||||
* \voffset=0.0pt
|
||||
* \mag=1000
|
||||
* \@twocolumnfalse
|
||||
* \@twosidefalse
|
||||
* \@mparswitchfalse
|
||||
* \@reversemarginfalse
|
||||
* (1in=72.27pt=25.4mm, 1cm=28.453pt)
|
||||
|
||||
LaTeX Info: Redefining \th on input line 18.
|
||||
(/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
|
||||
[Loading MPS to PDF converter (version 2006.09.02).]
|
||||
\scratchcounter=\count286
|
||||
\scratchdimen=\dimen170
|
||||
\scratchbox=\box54
|
||||
\nofMPsegments=\count287
|
||||
\nofMParguments=\count288
|
||||
\everyMPshowfont=\toks26
|
||||
\MPscratchCnt=\count289
|
||||
\MPscratchDim=\dimen171
|
||||
\MPnumerator=\count290
|
||||
\makeMPintoPDFobject=\count291
|
||||
\everyMPtoPDFconversion=\toks27
|
||||
) (/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
||||
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
|
||||
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
|
||||
85.
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
|
||||
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
|
||||
e
|
||||
))
|
||||
Package caption Info: Begin \AtBeginDocument code.
|
||||
Package caption Info: End \AtBeginDocument code.
|
||||
[1
|
||||
|
||||
{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}]
|
||||
<1.png, id=11, 384.6872pt x 289.08pt>
|
||||
File: 1.png Graphic file (type png)
|
||||
<use 1.png>
|
||||
Package pdftex.def Info: 1.png used on input line 48.
|
||||
(pdftex.def) Requested size: 281.10893pt x 211.26042pt.
|
||||
<<ot1.cmap>><<oml.cmap>><<oms.cmap>><<omx.cmap>>
|
||||
LaTeX Font Info: Trying to load font information for U+msa on input line 49.
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/amsfonts/umsa.fd
|
||||
File: umsa.fd 2013/01/14 v3.01 AMS symbols A
|
||||
)
|
||||
LaTeX Font Info: Trying to load font information for U+msb on input line 49.
|
||||
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/amsfonts/umsb.fd
|
||||
File: umsb.fd 2013/01/14 v3.01 AMS symbols B
|
||||
)
|
||||
LaTeX Font Info: Trying to load font information for OML+cmr on input line 4
|
||||
9.
|
||||
|
||||
(/usr/share/texmf-dist/tex/latex/base/omlcmr.fd
|
||||
File: omlcmr.fd 2022/07/10 v2.5l Standard LaTeX font definitions
|
||||
)
|
||||
|
||||
LaTeX Font Warning: Font shape `OML/cmr/m/up' undefined
|
||||
(Font) using `OML/cmr/m/it' instead on input line 49.
|
||||
|
||||
LaTeX Font Info: Font shape `OML/cmr/m/it' in size <10> not available
|
||||
(Font) Font shape `OML/cmm/m/it' tried instead on input line 49.
|
||||
LaTeX Font Info: Font shape `OML/cmr/m/up' in size <7> not available
|
||||
(Font) Font shape `OML/cmm/m/it' tried instead on input line 49.
|
||||
LaTeX Font Info: Font shape `OML/cmr/m/up' in size <5> not available
|
||||
(Font) Font shape `OML/cmm/m/it' tried instead on input line 49.
|
||||
LaTeX Font Info: Trying to load font information for OMS+cmr on input line 4
|
||||
9.
|
||||
(/usr/share/texmf-dist/tex/latex/base/omscmr.fd
|
||||
File: omscmr.fd 2022/07/10 v2.5l Standard LaTeX font definitions
|
||||
)
|
||||
|
||||
LaTeX Font Warning: Font shape `OMS/cmr/m/up' undefined
|
||||
(Font) using `OMS/cmr/m/n' instead on input line 49.
|
||||
|
||||
LaTeX Font Info: Font shape `OMS/cmr/m/n' in size <10> not available
|
||||
(Font) Font shape `OMS/cmsy/m/n' tried instead on input line 49.
|
||||
LaTeX Font Info: Font shape `OMS/cmr/m/up' in size <7> not available
|
||||
(Font) Font shape `OMS/cmsy/m/n' tried instead on input line 49.
|
||||
LaTeX Font Info: Font shape `OMS/cmr/m/up' in size <5> not available
|
||||
(Font) Font shape `OMS/cmsy/m/n' tried instead on input line 49.
|
||||
|
||||
LaTeX Font Warning: Font shape `T2A/cmr/m/up' undefined
|
||||
(Font) using `T2A/cmr/m/n' instead on input line 49.
|
||||
|
||||
<2.png, id=17, 445.665pt x 420.82219pt>
|
||||
File: 2.png Graphic file (type png)
|
||||
<use 2.png>
|
||||
Package pdftex.def Info: 2.png used on input line 61.
|
||||
(pdftex.def) Requested size: 297.70996pt x 281.10893pt.
|
||||
|
||||
LaTeX Warning: `!h' float specifier changed to `!ht'.
|
||||
|
||||
<3.png, id=18, 780.66656pt x 231.11343pt>
|
||||
File: 3.png Graphic file (type png)
|
||||
<use 3.png>
|
||||
Package pdftex.def Info: 3.png used on input line 68.
|
||||
(pdftex.def) Requested size: 421.67413pt x 124.83466pt.
|
||||
|
||||
LaTeX Warning: `!h' float specifier changed to `!ht'.
|
||||
|
||||
[1 <./1.png>] [2 <./2.png> <./3.png>] [3
|
||||
|
||||
]
|
||||
<4V.jpg, id=40, 451.6875pt x 401.5pt>
|
||||
File: 4V.jpg Graphic file (type jpg)
|
||||
<use 4V.jpg>
|
||||
Package pdftex.def Info: 4V.jpg used on input line 157.
|
||||
(pdftex.def) Requested size: 338.58632pt x 300.98334pt.
|
||||
<6V.jpg, id=41, 451.6875pt x 401.5pt>
|
||||
File: 6V.jpg Graphic file (type jpg)
|
||||
<use 6V.jpg>
|
||||
Package pdftex.def Info: 6V.jpg used on input line 164.
|
||||
(pdftex.def) Requested size: 338.58632pt x 300.98334pt.
|
||||
<8V.jpg, id=42, 451.6875pt x 401.5pt>
|
||||
File: 8V.jpg Graphic file (type jpg)
|
||||
<use 8V.jpg>
|
||||
Package pdftex.def Info: 8V.jpg used on input line 171.
|
||||
(pdftex.def) Requested size: 338.58632pt x 300.98334pt.
|
||||
|
||||
|
||||
LaTeX Warning: `!h' float specifier changed to `!ht'.
|
||||
|
||||
\openout3 = `./main-gnuplottex-fig1.gnuplot'.
|
||||
|
||||
Opening gnuplot stream ./main-gnuplottex-fig1.gnuplot
|
||||
runsystem(gnuplot ./main-gnuplottex-fig1.gnuplot 2>>main.gnuploterrors)...execu
|
||||
ted.
|
||||
|
||||
Package gnuplottex Info: ./main-gnuplottex-fig1.gnuplot converted on input line
|
||||
192.
|
||||
runsystem(rm -f "./main-gnuplottex-fig1.gnuplot")...executed.
|
||||
|
||||
|
||||
(./main-gnuplottex-fig1.tex
|
||||
\gptboxheight=\skip55
|
||||
\gptboxwidth=\skip56
|
||||
\gptboxtext=\box55
|
||||
Package epstopdf Info: Source file: <./main-gnuplottex-fig1.eps>
|
||||
(epstopdf) date: 2023-11-27 02:43:21
|
||||
(epstopdf) size: 30500 bytes
|
||||
(epstopdf) Output file: <./main-gnuplottex-fig1-eps-converted-to.pd
|
||||
f>
|
||||
(epstopdf) date: 2023-11-27 02:42:14
|
||||
(epstopdf) size: 6987 bytes
|
||||
(epstopdf) Command: <repstopdf --outfile=./main-gnuplottex-fig1-eps
|
||||
-converted-to.pdf ./main-gnuplottex-fig1.eps>
|
||||
(epstopdf) \includegraphics on input line 130.
|
||||
runsystem(repstopdf --outfile=./main-gnuplottex-fig1-eps-converted-to.pdf ./mai
|
||||
n-gnuplottex-fig1.eps)...executed.
|
||||
|
||||
Package epstopdf Info: Result file: <./main-gnuplottex-fig1-eps-converted-to.pd
|
||||
f>
|
||||
(epstopdf) date: 2023-11-27 02:43:21
|
||||
(epstopdf) size: 6987 bytes.
|
||||
<./main-gnuplottex-fig1-eps-converted-to.pdf, id=43, 361.35pt x 252.945pt>
|
||||
File: ./main-gnuplottex-fig1-eps-converted-to.pdf Graphic file (type pdf)
|
||||
<use ./main-gnuplottex-fig1-eps-converted-to.pdf>
|
||||
Package pdftex.def Info: ./main-gnuplottex-fig1-eps-converted-to.pdf used on i
|
||||
nput line 130.
|
||||
(pdftex.def) Requested size: 361.35463pt x 252.94823pt.
|
||||
)
|
||||
|
||||
LaTeX Warning: `!h' float specifier changed to `!ht'.
|
||||
|
||||
(./main.gnuploterrors) [4 <./4V.jpg> <./6V.jpg>] [5 <./8V.jpg> <./main-gnuplott
|
||||
ex-fig1-eps-converted-to.pdf>] (./main.aux)
|
||||
|
||||
LaTeX Font Warning: Some font shapes were not available, defaults substituted.
|
||||
|
||||
|
||||
LaTeX Warning: There were multiply-defined labels.
|
||||
|
||||
)
|
||||
Here is how much of TeX's memory you used:
|
||||
7962 strings out of 477459
|
||||
126125 string characters out of 5832156
|
||||
1860388 words of memory out of 5000000
|
||||
28001 multiletter control sequences out of 15000+600000
|
||||
524419 words of font info for 53 fonts, out of 8000000 for 9000
|
||||
430 hyphenation exceptions out of 8191
|
||||
67i,10n,77p,1234b,448s stack positions out of 10000i,1000n,20000p,200000b,200000s
|
||||
</home/nihonium/.texlive/texmf-var/fonts/pk/ljfour/lh/lh-t2a/larm0700.600pk>
|
||||
</home/nihonium/.texlive/texmf-var/fonts/pk/ljfour/lh/lh-t2a/labx1200.600pk> <
|
||||
/home/nihonium/.texlive/texmf-var/fonts/pk/ljfour/lh/lh-t2a/larm1000.600pk> </h
|
||||
ome/nihonium/.texlive/texmf-var/fonts/pk/ljfour/lh/lh-t2a/labx1440.600pk> </hom
|
||||
e/nihonium/.texlive/texmf-var/fonts/pk/ljfour/lh/lh-t2a/larm1728.600pk> </home/
|
||||
nihonium/.texlive/texmf-var/fonts/pk/ljfour/lh/lh-t2a/labx2074.600pk> </home/ni
|
||||
honium/.texlive/texmf-var/fonts/pk/ljfour/lh/lh-t2a/lacc1440.600pk> </home/niho
|
||||
nium/.texlive/texmf-var/fonts/pk/ljfour/lh/lh-t2a/lacc1728.600pk></usr/share/te
|
||||
xmf-dist/fonts/type1/public/amsfonts/cm/cmex10.pfb></usr/share/texmf-dist/fonts
|
||||
/type1/public/amsfonts/cm/cmmi10.pfb></usr/share/texmf-dist/fonts/type1/public/
|
||||
amsfonts/cm/cmr10.pfb></usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr
|
||||
7.pfb></usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb>
|
||||
Output written on main.pdf (6 pages, 341727 bytes).
|
||||
PDF statistics:
|
||||
268 PDF objects out of 1000 (max. 8388607)
|
||||
64 compressed objects within 1 object stream
|
||||
0 named destinations out of 1000 (max. 500000)
|
||||
56 words of extra memory for PDF output out of 10000 (max. 10000000)
|
||||
|
@ -0,0 +1,2 @@
|
||||
mktextfm rsfs10
|
||||
mktextfm rsfs10
|
After Width: | Height: | Size: 249 KiB |
After Width: | Height: | Size: 244 KiB |
After Width: | Height: | Size: 242 KiB |