mirror of
https://github.com/Rushilwiz/reli67.git
synced 2025-04-03 20:00:18 -04:00
init repo
This commit is contained in:
commit
828a9f37d5
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
#cannot persist aup3
|
||||
*.aup3
|
BIN
0825hw.pdf
Normal file
BIN
0825hw.pdf
Normal file
Binary file not shown.
BIN
091223.odt
Normal file
BIN
091223.odt
Normal file
Binary file not shown.
BIN
0914hw.pdf
Normal file
BIN
0914hw.pdf
Normal file
Binary file not shown.
BIN
0918hw.pdf
Normal file
BIN
0918hw.pdf
Normal file
Binary file not shown.
BIN
092123.odt
Normal file
BIN
092123.odt
Normal file
Binary file not shown.
BIN
0921hw.pdf
Normal file
BIN
0921hw.pdf
Normal file
Binary file not shown.
BIN
092623.odt
Normal file
BIN
092623.odt
Normal file
Binary file not shown.
BIN
0927hw.pdf
Normal file
BIN
0927hw.pdf
Normal file
Binary file not shown.
BIN
100323.odt
Normal file
BIN
100323.odt
Normal file
Binary file not shown.
BIN
101023.odt
Normal file
BIN
101023.odt
Normal file
Binary file not shown.
BIN
101223.odt
Normal file
BIN
101223.odt
Normal file
Binary file not shown.
BIN
interview_questions.odt
Normal file
BIN
interview_questions.odt
Normal file
Binary file not shown.
BIN
interviewee_proposal.odt
Normal file
BIN
interviewee_proposal.odt
Normal file
Binary file not shown.
BIN
interviewee_questions.pdf
Normal file
BIN
interviewee_questions.pdf
Normal file
Binary file not shown.
BIN
podcast/interview/Umaretiya_Interview Transcript.docx
Normal file
BIN
podcast/interview/Umaretiya_Interview Transcript.docx
Normal file
Binary file not shown.
BIN
podcast/interview/finally-zoom.m4a
Normal file
BIN
podcast/interview/finally-zoom.m4a
Normal file
Binary file not shown.
BIN
podcast/interview/first-jenish.mp3
Normal file
BIN
podcast/interview/first-jenish.mp3
Normal file
Binary file not shown.
BIN
podcast/interview/first-rushil.mp3
Normal file
BIN
podcast/interview/first-rushil.mp3
Normal file
Binary file not shown.
BIN
podcast/interview/second-jenish.mp3
Normal file
BIN
podcast/interview/second-jenish.mp3
Normal file
Binary file not shown.
BIN
podcast/interview/second-rushil.mp3
Normal file
BIN
podcast/interview/second-rushil.mp3
Normal file
Binary file not shown.
BIN
podcast/interview/transcript.odt
Normal file
BIN
podcast/interview/transcript.odt
Normal file
Binary file not shown.
BIN
podcast/interview/transcript.pdf
Normal file
BIN
podcast/interview/transcript.pdf
Normal file
Binary file not shown.
BIN
podcast/interview/umaretiya_interview.mp3
Normal file
BIN
podcast/interview/umaretiya_interview.mp3
Normal file
Binary file not shown.
221
position_paper/LTJournalArticle.cls
Normal file
221
position_paper/LTJournalArticle.cls
Normal file
|
@ -0,0 +1,221 @@
|
|||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
% LaTeX Templates Journal Article
|
||||
% LaTeX Class
|
||||
% Version 2.0 (February 7, 2023)
|
||||
%
|
||||
% This class originates from:
|
||||
% https://www.LaTeXTemplates.com
|
||||
%
|
||||
% Author:
|
||||
% Vel (vel@latextemplates.com)
|
||||
%
|
||||
% License:
|
||||
% CC BY-NC-SA 4.0 (https://creativecommons.org/licenses/by-nc-sa/4.0/)
|
||||
%
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% CLASS CONFIGURATION
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\NeedsTeXFormat{LaTeX2e}
|
||||
\ProvidesClass{LTJournalArticle}[2023/02/07 LaTeX Templates Journal Article Class v2.0]
|
||||
|
||||
\usepackage{etoolbox} % Required for conditional logic and easily changing commands
|
||||
|
||||
\newtoggle{unnumberedsections} % Create toggle for a class option
|
||||
\settoggle{unnumberedsections}{false} % Default value for the class option
|
||||
\DeclareOption{unnumberedsections}{\settoggle{unnumberedsections}{true}} % Set the class option toggle if the class option was used in the template
|
||||
|
||||
\DeclareOption*{\PassOptionsToClass{\CurrentOption}{article}} % Pass through any extra options specified to the base class
|
||||
\ProcessOptions\relax % Process class options
|
||||
|
||||
\LoadClass[twocolumn]{article} % Load the base class
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% REQUIRED PACKAGES AND MISC CONFIGURATIONS
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\usepackage{graphicx} % Required for including images
|
||||
\graphicspath{{Figures/}{./}} % Specifies where to look for included images (trailing slash required)
|
||||
|
||||
\usepackage[bottom, hang]{footmisc} % Force footnotes to the bottom of the page and to the left margin
|
||||
\setlength{\footnotemargin}{6pt} % Horizontal space between the footnote marker and text
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% MARGINS
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\usepackage[
|
||||
top=2.5cm, % Top margin
|
||||
bottom=2.5cm, % Bottom margin
|
||||
left=2cm, % Left margin
|
||||
right=2cm, % Right margin
|
||||
footskip=1cm, % Space from the bottom margin to the baseline of the footer
|
||||
headsep=0.75cm, % Space from the top margin to the baseline of the header
|
||||
columnsep=20pt, % Space between text columns (in twocolumn mode)
|
||||
%showframe % Uncomment to show frames around the margins for debugging purposes
|
||||
]{geometry}
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% FONTS
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\usepackage[utf8]{inputenc} % Required for inputting international characters
|
||||
\usepackage[T1]{fontenc} % Output font encoding for international characters
|
||||
|
||||
\usepackage[sc]{mathpazo} % Use the Palatino font
|
||||
|
||||
\linespread{1.05} % Increase line spacing slightly
|
||||
|
||||
\usepackage{microtype} % Slightly tweak font spacing for aesthetics
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% HEADERS AND FOOTERS
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\usepackage{fancyhdr} % Required for customizing headers and footers
|
||||
\pagestyle{fancy} % Enable custom headers and footers
|
||||
|
||||
\renewcommand{\headrulewidth}{0pt} % Top horizontal rule thickness
|
||||
|
||||
\fancyhf{} % Clear default headers/footers
|
||||
|
||||
\fancyhead[RO]{\small\textit{\runninghead}} % Right-odd page header
|
||||
\fancyhead[LE]{\small\textit{\runninghead}} % Left-even page header
|
||||
|
||||
\fancyfoot[RO]{\small\textbf{\thepage}} % Right-odd page footer
|
||||
\fancyfoot[LO]{\footnotesize\footertext} % Left-odd page footer
|
||||
\fancyfoot[LE]{\small\textbf{\thepage}} % Left-even page footer
|
||||
\fancyfoot[RE]{\footnotesize\footertext} % Left-even page footer
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% SECTIONS
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\usepackage{titlesec} % Required for modifying sections
|
||||
|
||||
\iftoggle{unnumberedsections}{ % Conditional logic for the unnumbered sections class options
|
||||
\setcounter{secnumdepth}{0} % Don't number sections at any level
|
||||
}{
|
||||
\setcounter{secnumdepth}{2} % Number sections down to subsections
|
||||
}
|
||||
|
||||
\titleformat
|
||||
{\section} % Section type being modified
|
||||
[block] % Section layout type, can be: hang, block, display, runin, leftmargin, rightmargin, drop, wrap, frame
|
||||
{\Large\bfseries\centering} % Text formatting of the whole section, i.e. label and title
|
||||
{\thesection} % Section label (e.g. number) and its formatting
|
||||
{0.5em} % Horizontal space between the section label and title
|
||||
{} % Code before the section title
|
||||
[] % Code after the section title
|
||||
|
||||
%------------------------------------------------
|
||||
|
||||
\titleformat
|
||||
{\subsection} % Section type being modified
|
||||
[block] % Section layout type, can be: hang, block, display, runin, leftmargin, rightmargin, drop, wrap, frame
|
||||
{\raggedright\large\bfseries} % Text formatting of the whole section, i.e. label and title
|
||||
{\thesubsection} % Section label (e.g. number) and its formatting
|
||||
{0.5em} % Horizontal space between the section label and title
|
||||
{} % Code before the section title
|
||||
[] % Code after the section title
|
||||
|
||||
%------------------------------------------------
|
||||
|
||||
\titleformat
|
||||
{\subsubsection} % Section type being modified
|
||||
[runin] % Section layout type, can be: hang, block, display, runin, leftmargin, rightmargin, drop, wrap, frame
|
||||
{\bfseries} % Text formatting of the whole section, i.e. label and title
|
||||
{} % Section label (e.g. number) and its formatting
|
||||
{5pt} % Horizontal space between the section label and title
|
||||
{} % Code before the section title
|
||||
[] % Code after the section title
|
||||
|
||||
\titlespacing*{\subsubsection}{0pt}{0.5\baselineskip}{8pt} % Spacing around section titles, the order is: left, before and after
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% TITLE SECTION CUSTOMIZATION
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\usepackage{titling} % Required for customizing the title section
|
||||
|
||||
\setlength{\droptitle}{-4\baselineskip} % Move the title up
|
||||
|
||||
\pretitle{\begin{center}\huge\bfseries} % Article title pre-formatting
|
||||
\posttitle{\end{center}} % Article title post-formatting
|
||||
|
||||
\setlength{\thanksmarkwidth}{3pt} % Left margin for the first \thanks line
|
||||
\setlength{\thanksmargin}{-3pt} % Left margin for the second and onwards \thanks line
|
||||
|
||||
\patchcmd{\maketitle}{plain}{empty}{}{} % Set the headers and footers style for the first page to empty
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% ABSTRACT CUSTOMIZATION
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\usepackage{abstract} % Allows abstract customization
|
||||
|
||||
\renewcommand{\abstractnamefont}{\normalfont\bfseries\vspace{0.5\baselineskip}} % Set the "Abstract" text to bold
|
||||
\renewcommand{\abstracttextfont}{\vspace{-0.5\baselineskip}\normalfont\small\itshape} % Set the abstract itself to small italic text
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% BIBLIOGRAPHY
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\usepackage[
|
||||
backend=biber, % Use the biber backend for compiling the bibliography
|
||||
citestyle=numeric, % In-text citation style
|
||||
bibstyle=numeric, % Bibliography style
|
||||
sorting=none, % Order references in the order in which they are used in the document
|
||||
]{biblatex}
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% TABLES
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\usepackage{booktabs} % Required for better horizontal rules in tables
|
||||
|
||||
\usepackage{array} % Required for manipulating table columns
|
||||
|
||||
\newcolumntype{R}[1]{>{\raggedleft\arraybackslash}p{#1}} % Define a new right-aligned paragraph column type
|
||||
\newcolumntype{L}[1]{>{\raggedright\arraybackslash}p{#1}} % Define a new left-aligned (no justification) paragraph column type
|
||||
\newcolumntype{C}[1]{>{\centering\arraybackslash}p{#1}} % Define a new centered paragraph column type
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% CAPTIONS
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\usepackage{caption} % Required for customizing captions
|
||||
|
||||
\captionsetup{skip=6pt} % Vertical whitespace between figures/tables and the caption (default is 10pt)
|
||||
\captionsetup{labelfont={bf,small}, textfont={it,small}} % Define caption font style
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% LISTS
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\usepackage{enumitem} % Required for list customization
|
||||
|
||||
\setlist{noitemsep} % Customize spacing around and inside lists
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% LINKS
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\usepackage{hyperref} % Required for links
|
||||
|
||||
\hypersetup{
|
||||
colorlinks=true, % Whether to color the text of links
|
||||
urlcolor=black, % Color for \url and \href links
|
||||
linkcolor=black, % Color for \nameref links
|
||||
citecolor=black, % Color of reference citations
|
||||
}
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% CUSTOM COMMANDS
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\newcommand{\runninghead}[1]{\renewcommand{\runninghead}{#1}}
|
||||
|
||||
\newcommand{\footertext}[1]{\renewcommand{\footertext}{#1}}
|
22
position_paper/paper1.aux
Normal file
22
position_paper/paper1.aux
Normal file
|
@ -0,0 +1,22 @@
|
|||
\relax
|
||||
\abx@aux@refcontext{none/global//global/global}
|
||||
\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]{}
|
||||
\@writefile{toc}{\contentsline {section}{Introduction}{1}{section*.1}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {section}{Religious Perspectives on Class Equality}{2}{section*.2}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {section}{Modern Political Implications}{2}{section*.3}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {section}{Conclusion}{3}{section*.4}\protected@file@percent }
|
||||
\abx@aux@read@bbl@mdfivesum{D41D8CD98F00B204E9800998ECF8427E}
|
||||
\gdef \@abspage@last{3}
|
0
position_paper/paper1.bbl
Normal file
0
position_paper/paper1.bbl
Normal file
2362
position_paper/paper1.bcf
Normal file
2362
position_paper/paper1.bcf
Normal file
File diff suppressed because it is too large
Load Diff
136
position_paper/paper1.fdb_latexmk
Normal file
136
position_paper/paper1.fdb_latexmk
Normal file
|
@ -0,0 +1,136 @@
|
|||
# Fdb version 4
|
||||
["biber paper1"] 0 "paper1.bcf" "paper1.bbl" "paper1" 1698721267 -1
|
||||
"paper1.bcf" 1698721267 105938 4120d06e593c16151a7ec260994a1958 "pdflatex"
|
||||
(generated)
|
||||
"paper1.bbl"
|
||||
"paper1.blg"
|
||||
(rewritten before read)
|
||||
["pdflatex"] 1698721266 "/home/rushil/school/reli/position_paper/paper1.tex" "paper1.pdf" "paper1" 1698721267 0
|
||||
"/etc/texmf/web2c/texmf.cnf" 1693368362 475 c0e671620eb5563b2130f56340a5fde8 ""
|
||||
"/home/rushil/school/reli/position_paper/paper1.tex" 1698721267 14086 e95b629332ab2681b6211e2c852034f6 ""
|
||||
"/usr/share/texlive/texmf-dist/fonts/enc/dvips/base/8r.enc" 1165713224 4850 80dc9bab7f31fb78a000ccfed0e27cab ""
|
||||
"/usr/share/texlive/texmf-dist/fonts/map/fontname/texfonts.map" 1577235249 3524 cb3e574dea2d1052e39280babc910dc8 ""
|
||||
"/usr/share/texlive/texmf-dist/fonts/tfm/adobe/palatino/pplb8r.tfm" 1136768653 2532 9ad73cf4dd2173a847f2a5f5608e0b9a ""
|
||||
"/usr/share/texlive/texmf-dist/fonts/tfm/adobe/palatino/pplb9e.tfm" 1136768653 5972 8da11a082fb7b0bb20bdef74c1f36ef8 ""
|
||||
"/usr/share/texlive/texmf-dist/fonts/tfm/adobe/palatino/pplr8r.tfm" 1136768653 2796 d37c29814a6717720ee1a7c9a0b2c3b8 ""
|
||||
"/usr/share/texlive/texmf-dist/fonts/tfm/adobe/palatino/pplr9e.tfm" 1136768653 6952 02ad5d201b346d62c53c35f081142949 ""
|
||||
"/usr/share/texlive/texmf-dist/fonts/tfm/adobe/palatino/pplr9t.tfm" 1136768653 2284 861e5309a3e09d74071777f716a582cc ""
|
||||
"/usr/share/texlive/texmf-dist/fonts/tfm/adobe/palatino/pplri8r.tfm" 1136768653 2720 70000d5e623e601132eab3cded5b819b ""
|
||||
"/usr/share/texlive/texmf-dist/fonts/tfm/adobe/palatino/pplri9e.tfm" 1136768653 4636 04bb79b19bf5315ced00732a1dac5509 ""
|
||||
"/usr/share/texlive/texmf-dist/fonts/tfm/jknappen/ec/ecrm1000.tfm" 1136768653 3584 adb004a0c8e7c46ee66cad73671f37b4 ""
|
||||
"/usr/share/texlive/texmf-dist/fonts/tfm/public/mathpazo/fplmb.tfm" 1136768653 984 3dcde7360ef3d34302e591b511cba83c ""
|
||||
"/usr/share/texlive/texmf-dist/fonts/tfm/public/mathpazo/fplmr.tfm" 1136768653 1032 7fa31d93ecd4cbdfac02c7a1ebc6facc ""
|
||||
"/usr/share/texlive/texmf-dist/fonts/tfm/public/mathpazo/fplmri.tfm" 1136768653 1148 56b0fdf7ca3f800294e968f64cfdcb87 ""
|
||||
"/usr/share/texlive/texmf-dist/fonts/tfm/public/mathpazo/zplmr7m.tfm" 1136768653 2080 40a71f65088bdd047622ce295520749e ""
|
||||
"/usr/share/texlive/texmf-dist/fonts/tfm/public/mathpazo/zplmr7t.tfm" 1136768653 1828 bb8add3bd19426549f9267c88b0cb8bd ""
|
||||
"/usr/share/texlive/texmf-dist/fonts/tfm/public/mathpazo/zplmr7v.tfm" 1136768653 1012 955c4ca523d7827d33db91a33412b048 ""
|
||||
"/usr/share/texlive/texmf-dist/fonts/tfm/public/mathpazo/zplmr7y.tfm" 1136768653 1316 b4037e9c09961a72f8476628774e1ec1 ""
|
||||
"/usr/share/texlive/texmf-dist/fonts/type1/urw/palatino/uplb8a.pfb" 1136849748 52406 dad2f72863a03727d5f536c64a69c452 ""
|
||||
"/usr/share/texlive/texmf-dist/fonts/type1/urw/palatino/uplr8a.pfb" 1136849748 52665 661b1e6b26edb5f50dd491f8a701cb57 ""
|
||||
"/usr/share/texlive/texmf-dist/fonts/type1/urw/palatino/uplri8a.pfb" 1136849748 50022 90249cba7e3e4e9845f80328d6f9bd13 ""
|
||||
"/usr/share/texlive/texmf-dist/fonts/vf/adobe/palatino/pplb9e.vf" 1136768653 2288 8e238fed018b54574a256cd0062e19b9 ""
|
||||
"/usr/share/texlive/texmf-dist/fonts/vf/adobe/palatino/pplr9e.vf" 1136768653 2296 bb1ff9494546688194a48c9b41b39dac ""
|
||||
"/usr/share/texlive/texmf-dist/fonts/vf/adobe/palatino/pplri9e.vf" 1136768653 2296 c260490d12463c5a352580ede007bb93 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii" 1461363279 71627 94eb9990bed73c364d7f53f960cc8c5b ""
|
||||
"/usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty" 1575674566 24708 5584a51a7101caf7e6bbf1fc27d8f7b1 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty" 1576625341 40635 c40361e206be584d448876bba8a64a3b ""
|
||||
"/usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty" 1576016050 33961 6b5c75130e435b2bfdb9f480a09a39f9 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty" 1576625273 7734 b98cbb34c81f667027c1e3ebdbfce34b ""
|
||||
"/usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty" 1576625223 8371 9d55b8bd010bc717624922fb3477d92e ""
|
||||
"/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty" 1644112042 7237 bdd120a32c8fdb4b433cf9ca2e7cd98a ""
|
||||
"/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty" 1572645307 1057 525c2192b5febbd8c1f662c9468335bb ""
|
||||
"/usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty" 1575499628 8356 7bbb2c2373aa810be568c29e333da8ed ""
|
||||
"/usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty" 1576625065 31769 002a487f55041f8e805cfbf6385ffd97 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty" 1576878844 5412 d5a2436094cd7be85769db90f29250a6 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty" 1600895880 17859 4409f8f50cd365c68e684407e5350b1b ""
|
||||
"/usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty" 1576015897 19007 15924f7228aca6c6d184b115f4baa231 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty" 1593379760 20089 80423eac55aa175305d35b49e04fe23b ""
|
||||
"/usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty" 1576624663 7008 f92eaa0a3872ed622bbf538217cd2ab7 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/abstract/abstract.sty" 1252025310 5128 640a4c0ff76b3e578a4c5482af27ec14 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/atveryend/atveryend.sty" 1576191570 19336 ce7ae9438967282886b3b036cfad1e4d ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty" 1576625391 3935 57aa3c3e203a5c2effb4d2bd2efbc323 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/base/article.cls" 1667332637 20144 d5ecf0a5140c8d8d8b72cbe86e320eff ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/base/atbegshi-ltx.sty" 1667332637 3052 30236f0cc243a8651b82240dfd2e8b9d ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/base/atveryend-ltx.sty" 1667332637 2462 8ce5f9a9c63002f2c1af03c262cf29af ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty" 1654720880 5119 4ce42f43368f652f9c9522d943cce8e4 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty" 1654720880 5319 48d7f3cfa322abd2788e3c09d624b922 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty" 1654720880 5048 84b05796b49b69e2d4257d537721c960 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo" 1667332637 8448 c33a4e1cb35cee9b33c2b21033b73e39 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/numeric.bbx" 1609451401 1818 9ed166ac0a9204a8ebe450ca09db5dde ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/standard.bbx" 1609451401 25680 409c3f3d570418bc545e8065bebd0688 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.cfg" 1342308459 69 249fa6df04d948e51b6d5c67bea30c42 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.def" 1656017808 92456 21e687f013958a6cb57adaa61a04572a ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.sty" 1657655400 526811 a1f8c6dfa1788c26d4b7587a2e99a625 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty" 1609451401 8433 72f8188742e7214b7068f345cd0287ac ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-compat.def" 1643926307 13919 5426dbe90e723f089052b4e908b56ef9 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-dm.def" 1643926307 32455 8d3e554836db11aab80a8e11be62e1b1 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/biblatex/cbx/numeric.cbx" 1510525977 4578 2d37f6a8c72f47aacef79870545a713d ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/biblatex/lbx/english.lbx" 1643926307 39965 48ce9ce3350aba9457f1020b1deba5cf ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/booktabs/booktabs.sty" 1579038678 6078 f1cb470c9199e7110a27851508ed7a5c ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty" 1647548653 54291 b8e5c600d4aa37b48a740dd2a6c26163 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty" 1647548653 71241 d2cd3a1c5acef9cb31f945b93c0bb6e3 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/enumitem/enumitem.sty" 1561238569 51697 f8f08183cd2080d9d18a41432d651dfb ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty" 1579991033 13886 d1306dcf79a944f6988e688c1785f9ce ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty" 1601931149 46845 3b58f70c6e861a13d927bff09d35ecbc ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty" 1668028059 18450 88279bf67c81e69f8e3f1c1bad1a26c5 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/footmisc/footmisc.sty" 1646774737 21361 67512b0642debcd4503e59fcbbb767f1 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty" 1578002852 41601 9cf6c5257b1bc7af01a58859749dd37a ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/color.cfg" 1459978653 1213 620bba36b25224fa9b7e1ccb4ecb76fd ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg" 1465944070 1224 978390e9c2234eab29404bc21b268d1e ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def" 1663965824 19448 1e988b341dda20961a6b931bcde55519 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/graphics/color.sty" 1654720880 7233 e46ce9241d2b2ca2a78155475fdd557a ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty" 1654720880 18387 8f900a490197ebaf93c02ae9476d4b09 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty" 1654720880 8010 a8d949cbdbc5c983593827c9eec252e1 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty" 1654720880 2671 7e67d78d9b88c845599a85b2d41f2e39 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/graphics/mathcolor.ltx" 1667332637 2885 9c645d672ae17285bba324998918efd8 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty" 1654720880 4023 293ea1c16429fc0c4cf605f4da1791a9 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty" 1580250785 17914 4c28a13fc3d975e6e81c9bea1d697276 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def" 1668456740 48272 52af74196dd55e6c486243beada2adcd ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty" 1668456740 222727 cfc4e76008392378678e691ec73ef8f0 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty" 1668456740 12947 2cb391007415dfa63f4c5ba1610afddb ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def" 1668456740 14249 c27c0c7065e940126403e065c08683b6 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/hyperref/puenc.def" 1668456740 117125 a8ce97e3b03f76decc5ad7e8d4da3088 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty" 1655478651 22555 6d8e155cfef6d82c3d5c742fea7c992e ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty" 1665067230 13815 760b0c02f691ea230f5359c4e1de23a7 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def" 1673989714 30429 213676d4c7327a21d91ddaed900e7b81 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty" 1673989714 6107 5b9ef4da92c9847f7480454f61dace5d ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty" 1673989714 6812 15bc6b0b734bc50fd1694a0947c28886 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg" 1279039959 678 4792914a8f45be57bb98413425e4c7af ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty" 1575499565 5766 13a9e8766c47f30327caf893ece86ac8 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.def" 1284153563 1620 fb1c32b818f2058eca187e5c41dfae77 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.sty" 1284153563 6187 b27afc771af565d3a9ff1ca7d16d0d46 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype-pdftex.def" 1656017716 48133 e8bc83615d2f0051186c09dbec3390e0 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.cfg" 1656017716 26842 ebf85e9b6a3e20f9fb2638bd26a568c1 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.sty" 1656017716 93090 81aca77406cb7fe6004d4af8e22e7534 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/microtype/mt-ppl.cfg" 1645649607 6374 8e807ab43a7020663b3a2a77b4aff6fd ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/psnfss/mathpazo.sty" 1586716065 8976 3f18c815295e2a2949e87fa743bcb489 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/psnfss/omlzplm.fd" 1137110629 638 2349dd185efcefd0c3380a2601df0cee ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/psnfss/omszplm.fd" 1137110629 455 c09241d92b40b1b84eb2bb5776606aea ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/psnfss/omxzplm.fd" 1137110629 322 fb88cb3e5f25cf1596ba8826c4210e0e ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1pplx.fd" 1137110629 869 d5724c6202887be8690c71fe9df2f441 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1zplm.fd" 1137110629 436 5e7baa1a259bab50a2bdffad6426f38c ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/psnfss/t1pplx.fd" 1137110629 678 c8b3ffad3ca2f0b681099c1471d12d8b ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty" 1576624809 9878 9e94e8fa600d95f9c7731bb21dfb67a4 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty" 1657483315 9714 ba3194bd52c8499b3f1e3eb91d409670 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/titlesec/titlesec.sty" 1625518490 48833 3b7b4cfab1a3d15596bfd3772a77ab65 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/titling/titling.sty" 1252107870 7358 95ac619994bd30d405a74f3eca431c84 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty" 1667332637 12691 5b542990fe866f3d772f71346cf85b95 ""
|
||||
"/usr/share/texlive/texmf-dist/tex/latex/url/url.sty" 1388531844 12796 8edb7d69a20b857904dd0ea757c14ec9 ""
|
||||
"/usr/share/texlive/texmf-dist/web2c/texmf.cnf" 1681034085 39561 34c98e380bf7c7201ee6a7909aff625a ""
|
||||
"/usr/share/texmf/web2c/texmf.cnf" 1681034085 39561 34c98e380bf7c7201ee6a7909aff625a ""
|
||||
"/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map" 1693368379 4623455 fa0568a71dd9a288d6c226ee477506c6 ""
|
||||
"/var/lib/texmf/web2c/pdftex/pdflatex.fmt" 1693368408 7880218 5644a8bb2704ddc1060e0c139ce5389a ""
|
||||
"LTJournalArticle.cls" 1698720995 9784 e38e4f05326438c9cfb0a6c6bf9f0764 ""
|
||||
"paper1.aux" 1698721267 1087 d4fb28876987d07f8ce388ae2afb80aa "pdflatex"
|
||||
"paper1.bbl" 1698720999 0 d41d8cd98f00b204e9800998ecf8427e "biber paper1"
|
||||
"paper1.out" 1698721267 649 050b257caec319fa53678c5ddc81fc21 "pdflatex"
|
||||
"paper1.run.xml" 1698721267 2238 4d716115edfbf3612bc662aee2919e61 "pdflatex"
|
||||
"paper1.tex" 1698721267 14086 e95b629332ab2681b6211e2c852034f6 ""
|
||||
(generated)
|
||||
"paper1.aux"
|
||||
"paper1.bcf"
|
||||
"paper1.log"
|
||||
"paper1.out"
|
||||
"paper1.pdf"
|
||||
"paper1.run.xml"
|
||||
(rewritten before read)
|
867
position_paper/paper1.fls
Normal file
867
position_paper/paper1.fls
Normal file
|
@ -0,0 +1,867 @@
|
|||
PWD /home/rushil/school/reli/position_paper
|
||||
INPUT /etc/texmf/web2c/texmf.cnf
|
||||
INPUT /usr/share/texmf/web2c/texmf.cnf
|
||||
INPUT /usr/share/texlive/texmf-dist/web2c/texmf.cnf
|
||||
INPUT /var/lib/texmf/web2c/pdftex/pdflatex.fmt
|
||||
INPUT /home/rushil/school/reli/position_paper/paper1.tex
|
||||
OUTPUT paper1.log
|
||||
INPUT ./LTJournalArticle.cls
|
||||
INPUT ./LTJournalArticle.cls
|
||||
INPUT LTJournalArticle.cls
|
||||
INPUT ./LTJournalArticle.cls
|
||||
INPUT ./LTJournalArticle.cls
|
||||
INPUT ./LTJournalArticle.cls
|
||||
INPUT ./LTJournalArticle.cls
|
||||
INPUT ./LTJournalArticle.cls
|
||||
INPUT LTJournalArticle.cls
|
||||
INPUT ./LTJournalArticle.cls
|
||||
INPUT LTJournalArticle.cls
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/size10.clo
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/size10.clo
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/size10.clo
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/size10.clo
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/footmisc/footmisc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/footmisc/footmisc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/footmisc/footmisc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/footmisc/footmisc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/footmisc/footmisc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/footmisc/footmisc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/footmisc/footmisc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/footmisc/footmisc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/footmisc/footmisc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/footmisc/footmisc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/footmisc/footmisc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/map/fontname/texfonts.map
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/jknappen/ec/ecrm1000.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/mathpazo.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/mathpazo.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/mathpazo.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/mathpazo.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/mathpazo.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/mathpazo.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/mathpazo.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/mathpazo.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/mathpazo.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/mathpazo.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/mathpazo.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/microtype/microtype-pdftex.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/microtype/microtype-pdftex.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/microtype/microtype-pdftex.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/microtype/microtype-pdftex.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.cfg
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.cfg
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.cfg
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.cfg
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.cfg
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.cfg
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/titlesec/titlesec.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/titlesec/titlesec.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/titlesec/titlesec.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/titlesec/titlesec.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/titlesec/titlesec.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/titlesec/titlesec.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/titlesec/titlesec.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/titlesec/titlesec.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/titlesec/titlesec.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/titlesec/titlesec.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/titlesec/titlesec.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/titling/titling.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/titling/titling.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/titling/titling.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/titling/titling.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/titling/titling.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/titling/titling.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/titling/titling.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/titling/titling.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/titling/titling.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/titling/titling.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/titling/titling.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/abstract/abstract.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/abstract/abstract.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/abstract/abstract.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/abstract/abstract.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/abstract/abstract.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/abstract/abstract.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/abstract/abstract.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/abstract/abstract.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/abstract/abstract.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/abstract/abstract.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/abstract/abstract.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/url/url.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/url/url.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/url/url.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/url/url.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/url/url.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/url/url.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/url/url.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/url/url.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/url/url.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/url/url.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/url/url.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-dm.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-dm.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-dm.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-compat.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-compat.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-compat.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/numeric.bbx
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/numeric.bbx
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/numeric.bbx
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/standard.bbx
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/standard.bbx
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/standard.bbx
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/cbx/numeric.cbx
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/cbx/numeric.cbx
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/cbx/numeric.cbx
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.cfg
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.cfg
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.cfg
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/booktabs/booktabs.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/booktabs/booktabs.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/booktabs/booktabs.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/booktabs/booktabs.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/booktabs/booktabs.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/booktabs/booktabs.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/booktabs/booktabs.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/booktabs/booktabs.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/booktabs/booktabs.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/booktabs/booktabs.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/booktabs/booktabs.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/tools/array.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/tools/array.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/tools/array.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/tools/array.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/tools/array.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/tools/array.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/tools/array.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/tools/array.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/tools/array.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/tools/array.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/tools/array.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/enumitem/enumitem.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/enumitem/enumitem.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/enumitem/enumitem.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/enumitem/enumitem.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/enumitem/enumitem.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/enumitem/enumitem.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/enumitem/enumitem.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/enumitem/enumitem.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/enumitem/enumitem.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/enumitem/enumitem.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/enumitem/enumitem.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/puenc.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/puenc.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/puenc.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/puenc.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/url/url.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/atbegshi-ltx.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/atbegshi-ltx.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/atbegshi-ltx.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/atbegshi-ltx.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/atbegshi-ltx.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/atbegshi-ltx.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/atbegshi-ltx.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/atveryend/atveryend.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/atveryend/atveryend.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/atveryend/atveryend.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/atveryend-ltx.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/atveryend/atveryend.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/atveryend/atveryend.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/atveryend-ltx.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/atveryend/atveryend.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/atveryend-ltx.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/atveryend-ltx.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/atveryend/atveryend.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/atveryend/atveryend.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/atveryend-ltx.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/atveryend-ltx.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/atveryend/atveryend.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/base/atveryend-ltx.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/atveryend/atveryend.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/t1pplx.fd
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/t1pplx.fd
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/t1pplx.fd
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/t1pplx.fd
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/palatino/pplr9e.tfm
|
||||
INPUT ./paper1.aux
|
||||
INPUT paper1.aux
|
||||
INPUT paper1.aux
|
||||
OUTPUT paper1.aux
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/microtype/mt-ppl.cfg
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/microtype/mt-ppl.cfg
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/microtype/mt-ppl.cfg
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/microtype/mt-ppl.cfg
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/lbx/english.lbx
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/lbx/english.lbx
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/biblatex/lbx/english.lbx
|
||||
OUTPUT paper1.bcf
|
||||
INPUT paper1.bbl
|
||||
INPUT ./paper1.bbl
|
||||
INPUT paper1.bbl
|
||||
INPUT ./paper1.bbl
|
||||
INPUT ./paper1.bbl
|
||||
INPUT paper1.bbl
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/color.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/color.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/color.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/color.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/color.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/color.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/color.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/color.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/color.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/color.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/color.sty
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/color.cfg
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/color.cfg
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/color.cfg
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/color.cfg
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/mathcolor.ltx
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/mathcolor.ltx
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/mathcolor.ltx
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/mathcolor.ltx
|
||||
INPUT ./paper1.out
|
||||
INPUT paper1.out
|
||||
INPUT ./paper1.out
|
||||
INPUT paper1.out
|
||||
INPUT ./paper1.out
|
||||
INPUT paper1.out
|
||||
INPUT ./paper1.out
|
||||
INPUT paper1.out
|
||||
OUTPUT paper1.pdf
|
||||
INPUT ./paper1.out
|
||||
INPUT ./paper1.out
|
||||
OUTPUT paper1.out
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/palatino/pplr9e.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/palatino/pplb9e.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/palatino/pplr9e.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1pplx.fd
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1pplx.fd
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1pplx.fd
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1pplx.fd
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/palatino/pplr9t.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/palatino/pplr9t.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/palatino/pplr9t.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/omlzplm.fd
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/omlzplm.fd
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/omlzplm.fd
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/omlzplm.fd
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/mathpazo/zplmr7m.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/mathpazo/zplmr7m.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/mathpazo/zplmr7m.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/omszplm.fd
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/omszplm.fd
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/omszplm.fd
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/omszplm.fd
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/mathpazo/zplmr7y.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/mathpazo/zplmr7y.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/mathpazo/zplmr7y.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/omxzplm.fd
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/omxzplm.fd
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/omxzplm.fd
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/omxzplm.fd
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/mathpazo/zplmr7v.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/mathpazo/zplmr7v.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/mathpazo/zplmr7v.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1zplm.fd
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1zplm.fd
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1zplm.fd
|
||||
INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1zplm.fd
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/mathpazo/zplmr7t.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/mathpazo/zplmr7t.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/mathpazo/zplmr7t.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/palatino/pplr9e.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/palatino/pplr9e.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/palatino/pplb9e.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/vf/adobe/palatino/pplb9e.vf
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/palatino/pplb8r.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/mathpazo/fplmb.tfm
|
||||
INPUT /var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/vf/adobe/palatino/pplr9e.vf
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/palatino/pplr8r.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/mathpazo/fplmr.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/vf/adobe/palatino/pplr9e.vf
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/palatino/pplr8r.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/mathpazo/fplmr.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/vf/adobe/palatino/pplb9e.vf
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/palatino/pplb8r.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/mathpazo/fplmb.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/vf/adobe/palatino/pplr9e.vf
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/palatino/pplr8r.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/mathpazo/fplmr.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/palatino/pplr9e.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/palatino/pplri9e.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/palatino/pplb9e.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/palatino/pplri9e.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/vf/adobe/palatino/pplri9e.vf
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/palatino/pplri8r.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/mathpazo/fplmri.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/vf/adobe/palatino/pplb9e.vf
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/palatino/pplb8r.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/mathpazo/fplmb.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/vf/adobe/palatino/pplri9e.vf
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/palatino/pplri8r.tfm
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/mathpazo/fplmri.tfm
|
||||
INPUT paper1.aux
|
||||
INPUT ./paper1.out
|
||||
INPUT ./paper1.out
|
||||
INPUT paper1.run.xml
|
||||
OUTPUT paper1.run.xml
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/enc/dvips/base/8r.enc
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/type1/urw/palatino/uplb8a.pfb
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/type1/urw/palatino/uplr8a.pfb
|
||||
INPUT /usr/share/texlive/texmf-dist/fonts/type1/urw/palatino/uplri8a.pfb
|
716
position_paper/paper1.log
Normal file
716
position_paper/paper1.log
Normal file
|
@ -0,0 +1,716 @@
|
|||
This is pdfTeX, Version 3.141592653-2.6-1.40.24 (TeX Live 2022/Debian) (preloaded format=pdflatex 2023.8.30) 30 OCT 2023 23:01
|
||||
entering extended mode
|
||||
restricted \write18 enabled.
|
||||
file:line:error style messages enabled.
|
||||
%&-line parsing enabled.
|
||||
**/home/rushil/school/reli/position_paper/paper1.tex
|
||||
(/home/rushil/school/reli/position_paper/paper1.tex
|
||||
LaTeX2e <2022-11-01> patch level 1
|
||||
L3 programming layer <2023-01-16> (./LTJournalArticle.cls
|
||||
Document Class: LTJournalArticle 2023/02/07 LaTeX Templates Journal Article Class v2.0
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty
|
||||
Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW)
|
||||
\etb@tempcnta=\count185
|
||||
) (/usr/share/texlive/texmf-dist/tex/latex/base/article.cls
|
||||
Document Class: article 2022/07/02 v1.4n Standard LaTeX document class
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo
|
||||
File: size10.clo 2022/07/02 v1.4n Standard LaTeX file (size option)
|
||||
)
|
||||
\c@part=\count186
|
||||
\c@section=\count187
|
||||
\c@subsection=\count188
|
||||
\c@subsubsection=\count189
|
||||
\c@paragraph=\count190
|
||||
\c@subparagraph=\count191
|
||||
\c@figure=\count192
|
||||
\c@table=\count193
|
||||
\abovecaptionskip=\skip48
|
||||
\belowcaptionskip=\skip49
|
||||
\bibindent=\dimen140
|
||||
) (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
|
||||
Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR)
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
Package: keyval 2022/05/29 v1.15 key=value parser (DPC)
|
||||
\KV@toks@=\toks16
|
||||
) (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
|
||||
Package: graphics 2022/03/10 v1.4e Standard LaTeX Graphics (DPC,SPQR)
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
|
||||
Package: trig 2021/08/11 v1.11 sin cos tan (DPC)
|
||||
) (/usr/share/texlive/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/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def
|
||||
File: pdftex.def 2022/09/22 v1.2b Graphics/color driver for pdftex
|
||||
))
|
||||
\Gin@req@height=\dimen141
|
||||
\Gin@req@width=\dimen142
|
||||
) (/usr/share/texlive/texmf-dist/tex/latex/footmisc/footmisc.sty
|
||||
Package: footmisc 2022/03/08 v6.0d a miscellany of footnote facilities
|
||||
\FN@temptoken=\toks17
|
||||
\footnotemargin=\dimen143
|
||||
\@outputbox@depth=\dimen144
|
||||
Package footmisc Info: Declaring symbol style bringhurst on input line 695.
|
||||
Package footmisc Info: Declaring symbol style chicago on input line 703.
|
||||
Package footmisc Info: Declaring symbol style wiley on input line 712.
|
||||
Package footmisc Info: Declaring symbol style lamport-robust on input line 723.
|
||||
Package footmisc Info: Declaring symbol style lamport* on input line 743.
|
||||
Package footmisc Info: Declaring symbol style lamport*-robust on input line 764.
|
||||
) (/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty
|
||||
Package: geometry 2020/01/02 v5.9 Page Geometry
|
||||
(/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty
|
||||
Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
|
||||
(/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty
|
||||
Package: iftex 2022/02/03 v1.0f TeX engine tests
|
||||
))
|
||||
\Gm@cnth=\count194
|
||||
\Gm@cntv=\count195
|
||||
\c@Gm@tempcnt=\count196
|
||||
\Gm@bindingoffset=\dimen145
|
||||
\Gm@wd@mp=\dimen146
|
||||
\Gm@odd@mp=\dimen147
|
||||
\Gm@even@mp=\dimen148
|
||||
\Gm@layoutwidth=\dimen149
|
||||
\Gm@layoutheight=\dimen150
|
||||
\Gm@layouthoffset=\dimen151
|
||||
\Gm@layoutvoffset=\dimen152
|
||||
\Gm@dimlist=\toks18
|
||||
) (/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty
|
||||
Package: inputenc 2021/02/14 v1.3d Input encoding file
|
||||
\inpenc@prehook=\toks19
|
||||
\inpenc@posthook=\toks20
|
||||
) (/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
|
||||
Package: fontenc 2021/04/29 v2.0v Standard LaTeX package
|
||||
) (/usr/share/texlive/texmf-dist/tex/latex/psnfss/mathpazo.sty
|
||||
Package: mathpazo 2020/03/25 PSNFSS-v9.3 Palatino w/ Pazo Math (D.Puga, WaS)
|
||||
\symupright=\mathgroup4
|
||||
) (/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.sty
|
||||
Package: microtype 2022/06/23 v3.0f Micro-typographical refinements (RS)
|
||||
\MT@toks=\toks21
|
||||
\MT@tempbox=\box51
|
||||
\MT@count=\count197
|
||||
LaTeX Info: Redefining \noprotrusionifhmode on input line 1045.
|
||||
LaTeX Info: Redefining \leftprotrusion on input line 1046.
|
||||
LaTeX Info: Redefining \rightprotrusion on input line 1056.
|
||||
LaTeX Info: Redefining \textls on input line 1234.
|
||||
\MT@outer@kern=\dimen153
|
||||
LaTeX Info: Redefining \textmicrotypecontext on input line 1858.
|
||||
\MT@listname@count=\count198
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype-pdftex.def
|
||||
File: microtype-pdftex.def 2022/06/23 v3.0f Definitions specific to pdftex (RS)
|
||||
LaTeX Info: Redefining \lsstyle on input line 900.
|
||||
LaTeX Info: Redefining \lslig on input line 900.
|
||||
\MT@outer@space=\skip50
|
||||
)
|
||||
Package microtype Info: Loading configuration file microtype.cfg.
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.cfg
|
||||
File: microtype.cfg 2022/06/23 v3.0f microtype main configuration file (RS)
|
||||
)) (/usr/share/texlive/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
|
||||
Package: fancyhdr 2022/11/09 v4.1 Extensive control of page headers and footers
|
||||
\f@nch@headwidth=\skip51
|
||||
\f@nch@O@elh=\skip52
|
||||
\f@nch@O@erh=\skip53
|
||||
\f@nch@O@olh=\skip54
|
||||
\f@nch@O@orh=\skip55
|
||||
\f@nch@O@elf=\skip56
|
||||
\f@nch@O@erf=\skip57
|
||||
\f@nch@O@olf=\skip58
|
||||
\f@nch@O@orf=\skip59
|
||||
) (/usr/share/texlive/texmf-dist/tex/latex/titlesec/titlesec.sty
|
||||
Package: titlesec 2021/07/05 v2.14 Sectioning titles
|
||||
\ttl@box=\box52
|
||||
\beforetitleunit=\skip60
|
||||
\aftertitleunit=\skip61
|
||||
\ttl@plus=\dimen154
|
||||
\ttl@minus=\dimen155
|
||||
\ttl@toksa=\toks22
|
||||
\titlewidth=\dimen156
|
||||
\titlewidthlast=\dimen157
|
||||
\titlewidthfirst=\dimen158
|
||||
) (/usr/share/texlive/texmf-dist/tex/latex/titling/titling.sty
|
||||
Package: titling 2009/09/04 v2.1d maketitle typesetting
|
||||
\thanksmarkwidth=\skip62
|
||||
\thanksmargin=\skip63
|
||||
\droptitle=\skip64
|
||||
) (/usr/share/texlive/texmf-dist/tex/latex/abstract/abstract.sty
|
||||
Package: abstract 2009/06/08 v1.2a configurable abstracts
|
||||
\abstitleskip=\skip65
|
||||
\absleftindent=\skip66
|
||||
\absrightindent=\skip67
|
||||
\absparindent=\skip68
|
||||
\absparsep=\skip69
|
||||
) (/usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.sty
|
||||
Package: biblatex 2022/07/12 v3.18b programmable bibliographies (PK/MW)
|
||||
(/usr/share/texlive/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
|
||||
Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO)
|
||||
(/usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty
|
||||
Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
|
||||
) (/usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
|
||||
Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO)
|
||||
)
|
||||
Package pdftexcmds Info: \pdf@primitive is available.
|
||||
Package pdftexcmds Info: \pdf@ifprimitive is available.
|
||||
Package pdftexcmds Info: \pdfdraftmode found.
|
||||
) (/usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty
|
||||
Package: kvoptions 2022-06-15 v3.15 Key value format for package options (HO)
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty
|
||||
Package: kvsetkeys 2022-10-05 v1.19 Key value parser (HO)
|
||||
)) (/usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.sty
|
||||
Package: logreq 2010/08/04 v1.0 xml request logger
|
||||
\lrq@indent=\count199
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/logreq/logreq.def
|
||||
File: logreq.def 2010/08/04 v1.0 logreq spec v1.0
|
||||
)) (/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty
|
||||
Package: ifthen 2022/04/13 v1.1d Standard LaTeX ifthen package (DPC)
|
||||
) (/usr/share/texlive/texmf-dist/tex/latex/url/url.sty
|
||||
\Urlmuskip=\muskip16
|
||||
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
|
||||
)
|
||||
\c@tabx@nest=\count266
|
||||
\c@listtotal=\count267
|
||||
\c@listcount=\count268
|
||||
\c@liststart=\count269
|
||||
\c@liststop=\count270
|
||||
\c@citecount=\count271
|
||||
\c@citetotal=\count272
|
||||
\c@multicitecount=\count273
|
||||
\c@multicitetotal=\count274
|
||||
\c@instcount=\count275
|
||||
\c@maxnames=\count276
|
||||
\c@minnames=\count277
|
||||
\c@maxitems=\count278
|
||||
\c@minitems=\count279
|
||||
\c@citecounter=\count280
|
||||
\c@maxcitecounter=\count281
|
||||
\c@savedcitecounter=\count282
|
||||
\c@uniquelist=\count283
|
||||
\c@uniquename=\count284
|
||||
\c@refsection=\count285
|
||||
\c@refsegment=\count286
|
||||
\c@maxextratitle=\count287
|
||||
\c@maxextratitleyear=\count288
|
||||
\c@maxextraname=\count289
|
||||
\c@maxextradate=\count290
|
||||
\c@maxextraalpha=\count291
|
||||
\c@abbrvpenalty=\count292
|
||||
\c@highnamepenalty=\count293
|
||||
\c@lownamepenalty=\count294
|
||||
\c@maxparens=\count295
|
||||
\c@parenlevel=\count296
|
||||
\blx@tempcnta=\count297
|
||||
\blx@tempcntb=\count298
|
||||
\blx@tempcntc=\count299
|
||||
\c@blx@maxsection=\count300
|
||||
\blx@maxsegment@0=\count301
|
||||
\blx@notetype=\count302
|
||||
\blx@parenlevel@text=\count303
|
||||
\blx@parenlevel@foot=\count304
|
||||
\blx@sectionciteorder@0=\count305
|
||||
\blx@sectionciteorderinternal@0=\count306
|
||||
\blx@entrysetcounter=\count307
|
||||
\blx@biblioinstance=\count308
|
||||
\labelnumberwidth=\skip70
|
||||
\labelalphawidth=\skip71
|
||||
\biblabelsep=\skip72
|
||||
\bibitemsep=\skip73
|
||||
\bibnamesep=\skip74
|
||||
\bibinitsep=\skip75
|
||||
\bibparsep=\skip76
|
||||
\bibhang=\skip77
|
||||
\blx@bcfin=\read2
|
||||
\blx@bcfout=\write3
|
||||
\blx@langwohyphens=\language87
|
||||
\c@mincomprange=\count309
|
||||
\c@maxcomprange=\count310
|
||||
\c@mincompwidth=\count311
|
||||
Package biblatex Info: Trying to load biblatex default data model...
|
||||
Package biblatex Info: ... file 'blx-dm.def' found.
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-dm.def
|
||||
File: blx-dm.def 2022/07/12 v3.18b biblatex localization (PK/MW)
|
||||
)
|
||||
Package biblatex Info: Trying to load biblatex citestyle data model...
|
||||
Package biblatex Info: ... file 'numeric.dbx' not found.
|
||||
Package biblatex Info: Trying to load biblatex custom data model...
|
||||
Package biblatex Info: ... file 'biblatex-dm.cfg' not found.
|
||||
\c@afterword=\count312
|
||||
\c@savedafterword=\count313
|
||||
\c@annotator=\count314
|
||||
\c@savedannotator=\count315
|
||||
\c@author=\count316
|
||||
\c@savedauthor=\count317
|
||||
\c@bookauthor=\count318
|
||||
\c@savedbookauthor=\count319
|
||||
\c@commentator=\count320
|
||||
\c@savedcommentator=\count321
|
||||
\c@editor=\count322
|
||||
\c@savededitor=\count323
|
||||
\c@editora=\count324
|
||||
\c@savededitora=\count325
|
||||
\c@editorb=\count326
|
||||
\c@savededitorb=\count327
|
||||
\c@editorc=\count328
|
||||
\c@savededitorc=\count329
|
||||
\c@foreword=\count330
|
||||
\c@savedforeword=\count331
|
||||
\c@holder=\count332
|
||||
\c@savedholder=\count333
|
||||
\c@introduction=\count334
|
||||
\c@savedintroduction=\count335
|
||||
\c@namea=\count336
|
||||
\c@savednamea=\count337
|
||||
\c@nameb=\count338
|
||||
\c@savednameb=\count339
|
||||
\c@namec=\count340
|
||||
\c@savednamec=\count341
|
||||
\c@translator=\count342
|
||||
\c@savedtranslator=\count343
|
||||
\c@shortauthor=\count344
|
||||
\c@savedshortauthor=\count345
|
||||
\c@shorteditor=\count346
|
||||
\c@savedshorteditor=\count347
|
||||
\c@labelname=\count348
|
||||
\c@savedlabelname=\count349
|
||||
\c@institution=\count350
|
||||
\c@savedinstitution=\count351
|
||||
\c@lista=\count352
|
||||
\c@savedlista=\count353
|
||||
\c@listb=\count354
|
||||
\c@savedlistb=\count355
|
||||
\c@listc=\count356
|
||||
\c@savedlistc=\count357
|
||||
\c@listd=\count358
|
||||
\c@savedlistd=\count359
|
||||
\c@liste=\count360
|
||||
\c@savedliste=\count361
|
||||
\c@listf=\count362
|
||||
\c@savedlistf=\count363
|
||||
\c@location=\count364
|
||||
\c@savedlocation=\count365
|
||||
\c@organization=\count366
|
||||
\c@savedorganization=\count367
|
||||
\c@origlocation=\count368
|
||||
\c@savedoriglocation=\count369
|
||||
\c@origpublisher=\count370
|
||||
\c@savedorigpublisher=\count371
|
||||
\c@publisher=\count372
|
||||
\c@savedpublisher=\count373
|
||||
\c@language=\count374
|
||||
\c@savedlanguage=\count375
|
||||
\c@origlanguage=\count376
|
||||
\c@savedoriglanguage=\count377
|
||||
\c@pageref=\count378
|
||||
\c@savedpageref=\count379
|
||||
\shorthandwidth=\skip78
|
||||
\shortjournalwidth=\skip79
|
||||
\shortserieswidth=\skip80
|
||||
\shorttitlewidth=\skip81
|
||||
\shortauthorwidth=\skip82
|
||||
\shorteditorwidth=\skip83
|
||||
\locallabelnumberwidth=\skip84
|
||||
\locallabelalphawidth=\skip85
|
||||
\localshorthandwidth=\skip86
|
||||
\localshortjournalwidth=\skip87
|
||||
\localshortserieswidth=\skip88
|
||||
\localshorttitlewidth=\skip89
|
||||
\localshortauthorwidth=\skip90
|
||||
\localshorteditorwidth=\skip91
|
||||
Package biblatex Info: Trying to load compatibility code...
|
||||
Package biblatex Info: ... file 'blx-compat.def' found.
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-compat.def
|
||||
File: blx-compat.def 2022/07/12 v3.18b biblatex compatibility (PK/MW)
|
||||
)
|
||||
Package biblatex Info: Trying to load generic definitions...
|
||||
Package biblatex Info: ... file 'biblatex.def' found.
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.def
|
||||
File: biblatex.def 2022/07/12 v3.18b biblatex compatibility (PK/MW)
|
||||
\c@textcitecount=\count380
|
||||
\c@textcitetotal=\count381
|
||||
\c@textcitemaxnames=\count382
|
||||
\c@biburlbigbreakpenalty=\count383
|
||||
\c@biburlbreakpenalty=\count384
|
||||
\c@biburlnumpenalty=\count385
|
||||
\c@biburlucpenalty=\count386
|
||||
\c@biburllcpenalty=\count387
|
||||
\biburlbigskip=\muskip17
|
||||
\biburlnumskip=\muskip18
|
||||
\biburlucskip=\muskip19
|
||||
\biburllcskip=\muskip20
|
||||
\c@smartand=\count388
|
||||
)
|
||||
Package biblatex Info: Trying to load bibliography style 'numeric'...
|
||||
Package biblatex Info: ... file 'numeric.bbx' found.
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/numeric.bbx
|
||||
File: numeric.bbx 2022/07/12 v3.18b biblatex bibliography style (PK/MW)
|
||||
Package biblatex Info: Trying to load bibliography style 'standard'...
|
||||
Package biblatex Info: ... file 'standard.bbx' found.
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/biblatex/bbx/standard.bbx
|
||||
File: standard.bbx 2022/07/12 v3.18b biblatex bibliography style (PK/MW)
|
||||
\c@bbx:relatedcount=\count389
|
||||
\c@bbx:relatedtotal=\count390
|
||||
))
|
||||
Package biblatex Info: Trying to load citation style 'numeric'...
|
||||
Package biblatex Info: ... file 'numeric.cbx' found.
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/biblatex/cbx/numeric.cbx
|
||||
File: numeric.cbx 2022/07/12 v3.18b biblatex citation style (PK/MW)
|
||||
Package biblatex Info: Redefining '\cite'.
|
||||
Package biblatex Info: Redefining '\parencite'.
|
||||
Package biblatex Info: Redefining '\footcite'.
|
||||
Package biblatex Info: Redefining '\footcitetext'.
|
||||
Package biblatex Info: Redefining '\smartcite'.
|
||||
Package biblatex Info: Redefining '\supercite'.
|
||||
Package biblatex Info: Redefining '\textcite'.
|
||||
Package biblatex Info: Redefining '\textcites'.
|
||||
Package biblatex Info: Redefining '\cites'.
|
||||
Package biblatex Info: Redefining '\parencites'.
|
||||
Package biblatex Info: Redefining '\smartcites'.
|
||||
)
|
||||
Package biblatex Info: Trying to load configuration file...
|
||||
Package biblatex Info: ... file 'biblatex.cfg' found.
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.cfg
|
||||
File: biblatex.cfg
|
||||
)
|
||||
Package biblatex Info: Input encoding 'utf8' detected.
|
||||
Package biblatex Info: Document encoding is UTF8 ....
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||
Package: expl3 2023-01-16 L3 programming layer (loader)
|
||||
(/usr/share/texlive/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=\count391
|
||||
\l__pdf_internal_box=\box53
|
||||
))
|
||||
Package biblatex Info: ... and expl3
|
||||
(biblatex) 2023-01-16 L3 programming layer (loader)
|
||||
(biblatex) is new enough (at least 2020/04/06),
|
||||
(biblatex) setting 'casechanger=expl3'.
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty (/usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
|
||||
Package: xparse 2023-01-16 L3 Experimental document command parser
|
||||
)
|
||||
Package: blx-case-expl3 2022/07/12 v3.18b expl3 case changing code for biblatex
|
||||
)) (/usr/share/texlive/texmf-dist/tex/latex/booktabs/booktabs.sty
|
||||
Package: booktabs 2020/01/12 v1.61803398 Publication quality tables
|
||||
\heavyrulewidth=\dimen159
|
||||
\lightrulewidth=\dimen160
|
||||
\cmidrulewidth=\dimen161
|
||||
\belowrulesep=\dimen162
|
||||
\belowbottomsep=\dimen163
|
||||
\aboverulesep=\dimen164
|
||||
\abovetopsep=\dimen165
|
||||
\cmidrulesep=\dimen166
|
||||
\cmidrulekern=\dimen167
|
||||
\defaultaddspace=\dimen168
|
||||
\@cmidla=\count392
|
||||
\@cmidlb=\count393
|
||||
\@aboverulesep=\dimen169
|
||||
\@belowrulesep=\dimen170
|
||||
\@thisruleclass=\count394
|
||||
\@lastruleclass=\count395
|
||||
\@thisrulewidth=\dimen171
|
||||
) (/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty
|
||||
Package: array 2022/09/04 v2.5g Tabular extension package (FMi)
|
||||
\col@sep=\dimen172
|
||||
\ar@mcellbox=\box54
|
||||
\extrarowheight=\dimen173
|
||||
\NC@list=\toks23
|
||||
\extratabsurround=\skip92
|
||||
\backup@length=\skip93
|
||||
\ar@cellbox=\box55
|
||||
) (/usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty
|
||||
Package: caption 2022/03/01 v3.6b Customizing captions (AR)
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty
|
||||
Package: caption3 2022/03/17 v2.3b caption3 kernel (AR)
|
||||
\caption@tempdima=\dimen174
|
||||
\captionmargin=\dimen175
|
||||
\caption@leftmargin=\dimen176
|
||||
\caption@rightmargin=\dimen177
|
||||
\caption@width=\dimen178
|
||||
\caption@indent=\dimen179
|
||||
\caption@parindent=\dimen180
|
||||
\caption@hangindent=\dimen181
|
||||
Package caption Info: Standard document class detected.
|
||||
)
|
||||
\c@caption@flags=\count396
|
||||
\c@continuedfloat=\count397
|
||||
) (/usr/share/texlive/texmf-dist/tex/latex/enumitem/enumitem.sty
|
||||
Package: enumitem 2019/06/20 v3.9 Customized lists
|
||||
\labelindent=\skip94
|
||||
\enit@outerparindent=\dimen182
|
||||
\enit@toks=\toks24
|
||||
\enit@inbox=\box56
|
||||
\enit@count@id=\count398
|
||||
\enitdp@description=\count399
|
||||
) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
|
||||
Package: hyperref 2022-11-13 v7.00u Hypertext links for LaTeX
|
||||
(/usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
|
||||
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
|
||||
) (/usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty
|
||||
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
|
||||
) (/usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty
|
||||
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
|
||||
) (/usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
|
||||
Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
|
||||
) (/usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty
|
||||
Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
|
||||
) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty
|
||||
Package: nameref 2022-05-17 v2.50 Cross-referencing by name of section
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty
|
||||
Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
|
||||
) (/usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
|
||||
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
|
||||
)
|
||||
\c@section@level=\count400
|
||||
)
|
||||
\@linkdim=\dimen183
|
||||
\Hy@linkcounter=\count401
|
||||
\Hy@pagecounter=\count402
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def
|
||||
File: pd1enc.def 2022-11-13 v7.00u Hyperref: PDFDocEncoding definition (HO)
|
||||
Now handling font encoding PD1 ...
|
||||
... no UTF-8 mapping file for font encoding PD1
|
||||
) (/usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty
|
||||
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
|
||||
) (/usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty
|
||||
Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
|
||||
)
|
||||
\Hy@SavedSpaceFactor=\count403
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/puenc.def
|
||||
File: puenc.def 2022-11-13 v7.00u Hyperref: PDF Unicode definition (HO)
|
||||
Now handling font encoding PU ...
|
||||
... no UTF-8 mapping file for font encoding PU
|
||||
)
|
||||
Package hyperref Info: Hyper figures OFF on input line 4162.
|
||||
Package hyperref Info: Link nesting OFF on input line 4167.
|
||||
Package hyperref Info: Hyper index ON on input line 4170.
|
||||
Package hyperref Info: Plain pages OFF on input line 4177.
|
||||
Package hyperref Info: Backreferencing OFF on input line 4182.
|
||||
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
|
||||
Package hyperref Info: Bookmarks ON on input line 4410.
|
||||
\c@Hy@tempcnt=\count404
|
||||
LaTeX Info: Redefining \url on input line 4748.
|
||||
\XeTeXLinkMargin=\dimen184
|
||||
(/usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty
|
||||
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
|
||||
(/usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
|
||||
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO)
|
||||
))
|
||||
\Fld@menulength=\count405
|
||||
\Field@Width=\dimen185
|
||||
\Fld@charsize=\dimen186
|
||||
Package hyperref Info: Hyper figures OFF on input line 6027.
|
||||
Package hyperref Info: Link nesting OFF on input line 6032.
|
||||
Package hyperref Info: Hyper index ON on input line 6035.
|
||||
Package hyperref Info: backreferencing OFF on input line 6042.
|
||||
Package hyperref Info: Link coloring OFF on input line 6047.
|
||||
Package hyperref Info: Link coloring with OCG OFF on input line 6052.
|
||||
Package hyperref Info: PDF/A mode OFF on input line 6057.
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/base/atbegshi-ltx.sty
|
||||
Package: atbegshi-ltx 2021/01/10 v1.0c Emulation of the original atbegshi
|
||||
package with kernel methods
|
||||
)
|
||||
\Hy@abspage=\count406
|
||||
\c@Item=\count407
|
||||
\c@Hfootnote=\count408
|
||||
)
|
||||
Package hyperref Info: Driver (autodetected): hpdftex.
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def
|
||||
File: hpdftex.def 2022-11-13 v7.00u Hyperref driver for pdfTeX
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/base/atveryend-ltx.sty
|
||||
Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atveryend package
|
||||
with kernel methods
|
||||
)
|
||||
\Fld@listcount=\count409
|
||||
\c@bookmark@seq@number=\count410
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
|
||||
Package: rerunfilecheck 2022-07-10 v1.10 Rerun checks for auxiliary files (HO)
|
||||
(/usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
|
||||
Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
|
||||
)
|
||||
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 285.
|
||||
)
|
||||
\Hy@SectionHShift=\skip95
|
||||
)
|
||||
Package hyperref Info: Option `colorlinks' set `true' on input line 213.
|
||||
)
|
||||
\@quotelevel=\count411
|
||||
\@quotereset=\count412
|
||||
LaTeX Font Info: Trying to load font information for T1+pplx on input line 36.
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/t1pplx.fd
|
||||
File: t1pplx.fd 2004/09/06 font definitions for T1/pplx.
|
||||
) (./paper1.aux)
|
||||
\openout1 = `paper1.aux'.
|
||||
|
||||
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 36.
|
||||
LaTeX Font Info: ... okay on input line 36.
|
||||
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 36.
|
||||
LaTeX Font Info: ... okay on input line 36.
|
||||
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 36.
|
||||
LaTeX Font Info: ... okay on input line 36.
|
||||
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 36.
|
||||
LaTeX Font Info: ... okay on input line 36.
|
||||
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 36.
|
||||
LaTeX Font Info: ... okay on input line 36.
|
||||
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 36.
|
||||
LaTeX Font Info: ... okay on input line 36.
|
||||
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 36.
|
||||
LaTeX Font Info: ... okay on input line 36.
|
||||
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 36.
|
||||
LaTeX Font Info: ... okay on input line 36.
|
||||
LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 36.
|
||||
LaTeX Font Info: ... okay on input line 36.
|
||||
(/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
|
||||
[Loading MPS to PDF converter (version 2006.09.02).]
|
||||
\scratchcounter=\count413
|
||||
\scratchdimen=\dimen187
|
||||
\scratchbox=\box57
|
||||
\nofMPsegments=\count414
|
||||
\nofMParguments=\count415
|
||||
\everyMPshowfont=\toks25
|
||||
\MPscratchCnt=\count416
|
||||
\MPscratchDim=\dimen188
|
||||
\MPnumerator=\count417
|
||||
\makeMPintoPDFobject=\count418
|
||||
\everyMPtoPDFconversion=\toks26
|
||||
) (/usr/share/texlive/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 485.
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
|
||||
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Live
|
||||
))
|
||||
*geometry* driver: auto-detecting
|
||||
*geometry* detected driver: pdftex
|
||||
*geometry* verbose mode - [ preamble ] result:
|
||||
* driver: pdftex
|
||||
* paper: letterpaper
|
||||
* layout: <same size as paper>
|
||||
* layoutoffset:(h,v)=(0.0pt,0.0pt)
|
||||
* modes: twoside
|
||||
* h-part:(L,W,R)=(56.9055pt, 500.484pt, 56.9055pt)
|
||||
* v-part:(T,H,B)=(71.13188pt, 652.70622pt, 71.13188pt)
|
||||
* \paperwidth=614.295pt
|
||||
* \paperheight=794.96999pt
|
||||
* \textwidth=500.484pt
|
||||
* \textheight=652.70622pt
|
||||
* \oddsidemargin=-15.36449pt
|
||||
* \evensidemargin=-15.36449pt
|
||||
* \topmargin=-34.47766pt
|
||||
* \headheight=12.0pt
|
||||
* \headsep=21.33955pt
|
||||
* \topskip=10.0pt
|
||||
* \footskip=28.45274pt
|
||||
* \marginparwidth=48.0pt
|
||||
* \marginparsep=10.0pt
|
||||
* \columnsep=20.0pt
|
||||
* \skip\footins=9.0pt plus 4.0pt minus 2.0pt
|
||||
* \hoffset=0.0pt
|
||||
* \voffset=0.0pt
|
||||
* \mag=1000
|
||||
* \@twocolumntrue
|
||||
* \@twosidetrue
|
||||
* \@mparswitchtrue
|
||||
* \@reversemarginfalse
|
||||
* (1in=72.27pt=25.4mm, 1cm=28.453pt)
|
||||
|
||||
\big@size=\dimen189
|
||||
LaTeX Info: Redefining \microtypecontext on input line 36.
|
||||
Package microtype Info: Applying patch `item' on input line 36.
|
||||
Package microtype Info: Applying patch `toc' on input line 36.
|
||||
Package microtype Info: Applying patch `eqnum' on input line 36.
|
||||
Package microtype Info: Applying patch `footnote' on input line 36.
|
||||
Package microtype Info: Generating PDF output.
|
||||
Package microtype Info: Character protrusion enabled (level 2).
|
||||
Package microtype Info: Using default protrusion set `alltext'.
|
||||
Package microtype Info: Automatic font expansion enabled (level 2),
|
||||
(microtype) stretch: 20, shrink: 20, step: 1, non-selected.
|
||||
Package microtype Info: Using default expansion set `alltext-nott'.
|
||||
LaTeX Info: Redefining \showhyphens on input line 36.
|
||||
Package microtype Info: No adjustment of tracking.
|
||||
Package microtype Info: No adjustment of interword spacing.
|
||||
Package microtype Info: No adjustment of character kerning.
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/microtype/mt-ppl.cfg
|
||||
File: mt-ppl.cfg 2005/11/16 v1.6 microtype config. file: Palatino (RS)
|
||||
)
|
||||
Package biblatex Info: Trying to load language 'english'...
|
||||
Package biblatex Info: ... file 'english.lbx' found.
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/biblatex/lbx/english.lbx
|
||||
File: english.lbx 2022/07/12 v3.18b biblatex localization (PK/MW)
|
||||
)
|
||||
Package biblatex Info: Input encoding 'utf8' detected.
|
||||
Package biblatex Info: Automatic encoding selection.
|
||||
(biblatex) Assuming data encoding 'utf8'.
|
||||
\openout3 = `paper1.bcf'.
|
||||
|
||||
Package biblatex Info: Trying to load bibliographic data...
|
||||
Package biblatex Info: ... file 'paper1.bbl' found.
|
||||
(./paper1.bbl)
|
||||
Package biblatex Info: Reference section=0 on input line 36.
|
||||
Package biblatex Info: Reference segment=0 on input line 36.
|
||||
Package caption Info: Begin \AtBeginDocument code.
|
||||
Package caption Info: hyperref package is loaded.
|
||||
Package caption Info: End \AtBeginDocument code.
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/graphics/color.sty
|
||||
Package: color 2022/01/06 v1.3d Standard LaTeX Color (DPC)
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/color.cfg
|
||||
File: color.cfg 2016/01/02 v1.6 sample color configuration
|
||||
)
|
||||
Package color Info: Driver file: pdftex.def on input line 149.
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/graphics/mathcolor.ltx))
|
||||
Package hyperref Info: Link coloring ON on input line 36.
|
||||
(./paper1.out) (./paper1.out)
|
||||
\@outlinefile=\write4
|
||||
\openout4 = `paper1.out'.
|
||||
|
||||
LaTeX Font Info: Trying to load font information for OT1+pplx on input line 39.
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1pplx.fd
|
||||
File: ot1pplx.fd 2004/09/06 font definitions for OT1/pplx.
|
||||
)
|
||||
LaTeX Font Info: Trying to load font information for OML+zplm on input line 39.
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/omlzplm.fd
|
||||
File: omlzplm.fd 2002/09/08 Fontinst v1.914 font definitions for OML/zplm.
|
||||
)
|
||||
LaTeX Font Info: Trying to load font information for OMS+zplm on input line 39.
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/omszplm.fd
|
||||
File: omszplm.fd 2002/09/08 Fontinst v1.914 font definitions for OMS/zplm.
|
||||
)
|
||||
LaTeX Font Info: Trying to load font information for OMX+zplm on input line 39.
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/omxzplm.fd
|
||||
File: omxzplm.fd 2002/09/08 Fontinst v1.914 font definitions for OMX/zplm.
|
||||
)
|
||||
LaTeX Font Info: Trying to load font information for OT1+zplm on input line 39.
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1zplm.fd
|
||||
File: ot1zplm.fd 2002/09/08 Fontinst v1.914 font definitions for OT1/zplm.
|
||||
)
|
||||
Package microtype Info: Loading generic protrusion settings for font family
|
||||
(microtype) `zplm' (encoding: OT1).
|
||||
(microtype) For optimal results, create family-specific settings.
|
||||
(microtype) See the microtype manual for details.
|
||||
|
||||
Underfull \vbox (badness 1584) has occurred while \output is active []
|
||||
|
||||
|
||||
Underfull \vbox (badness 5681) has occurred while \output is active []
|
||||
|
||||
[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}
|
||||
|
||||
|
||||
] [2] [3] (./paper1.aux)
|
||||
Package rerunfilecheck Info: File `paper1.out' has not changed.
|
||||
(rerunfilecheck) Checksum: 050B257CAEC319FA53678C5DDC81FC21;649.
|
||||
Package logreq Info: Writing requests to 'paper1.run.xml'.
|
||||
\openout1 = `paper1.run.xml'.
|
||||
|
||||
)
|
||||
Here is how much of TeX's memory you used:
|
||||
20807 strings out of 476091
|
||||
366806 string characters out of 5794081
|
||||
1871330 words of memory out of 5000000
|
||||
40683 multiletter control sequences out of 15000+600000
|
||||
555014 words of font info for 238 fonts, out of 8000000 for 9000
|
||||
1141 hyphenation exceptions out of 8191
|
||||
78i,13n,82p,1660b,801s stack positions out of 10000i,1000n,20000p,200000b,200000s
|
||||
{/usr/share/texlive/texmf-dist/fonts/enc/dvips/base/8r.enc}</usr/share/texlive/texmf-dist/fonts/type1/urw/palatino/uplb8a.pfb></usr/share/texlive/texmf-dist/fonts/type1/urw/palatino/uplr8a.pfb></usr/share/texlive/texmf-dist/fonts/type1/urw/palatino/uplri8a.pfb>
|
||||
Output written on paper1.pdf (3 pages, 70057 bytes).
|
||||
PDF statistics:
|
||||
56 PDF objects out of 1000 (max. 8388607)
|
||||
44 compressed objects within 1 object stream
|
||||
8 named destinations out of 1000 (max. 500000)
|
||||
63009 words of extra memory for PDF output out of 74296 (max. 10000000)
|
||||
|
4
position_paper/paper1.out
Normal file
4
position_paper/paper1.out
Normal file
|
@ -0,0 +1,4 @@
|
|||
\BOOKMARK [1][-]{section*.1}{\376\377\000I\000n\000t\000r\000o\000d\000u\000c\000t\000i\000o\000n}{}% 1
|
||||
\BOOKMARK [1][-]{section*.2}{\376\377\000R\000e\000l\000i\000g\000i\000o\000u\000s\000\040\000P\000e\000r\000s\000p\000e\000c\000t\000i\000v\000e\000s\000\040\000o\000n\000\040\000C\000l\000a\000s\000s\000\040\000E\000q\000u\000a\000l\000i\000t\000y}{}% 2
|
||||
\BOOKMARK [1][-]{section*.3}{\376\377\000M\000o\000d\000e\000r\000n\000\040\000P\000o\000l\000i\000t\000i\000c\000a\000l\000\040\000I\000m\000p\000l\000i\000c\000a\000t\000i\000o\000n\000s}{}% 3
|
||||
\BOOKMARK [1][-]{section*.4}{\376\377\000C\000o\000n\000c\000l\000u\000s\000i\000o\000n}{}% 4
|
BIN
position_paper/paper1.pdf
Normal file
BIN
position_paper/paper1.pdf
Normal file
Binary file not shown.
489
position_paper/paper1.pdfsync
Normal file
489
position_paper/paper1.pdfsync
Normal file
|
@ -0,0 +1,489 @@
|
|||
paper1
|
||||
version 1
|
||||
l 0 24
|
||||
l 1 24
|
||||
l 2 24
|
||||
l 3 24
|
||||
l 4 24
|
||||
l 5 24
|
||||
l 6 24
|
||||
l 7 24
|
||||
l 8 24
|
||||
l 9 24
|
||||
(umsa.fd
|
||||
)
|
||||
(umsb.fd
|
||||
)
|
||||
l 10 24
|
||||
l 11 24
|
||||
l 12 24
|
||||
l 13 24
|
||||
l 14 24
|
||||
l 15 24
|
||||
l 16 24
|
||||
l 17 24
|
||||
l 18 24
|
||||
l 19 24
|
||||
l 20 24
|
||||
l 21 24
|
||||
l 22 24
|
||||
l 23 1
|
||||
l 24 1
|
||||
l 25 1
|
||||
l 26 2
|
||||
l 27 2
|
||||
l 28 2
|
||||
l 29 3
|
||||
l 30 3
|
||||
l 31 3
|
||||
l 32 4
|
||||
l 33 4
|
||||
l 34 4
|
||||
l 35 5
|
||||
l 36 5
|
||||
l 37 5
|
||||
l 38 26
|
||||
l 39 26
|
||||
l 40 26
|
||||
l 41 28
|
||||
l 42 30
|
||||
l 43 32
|
||||
l 44 34
|
||||
l 45 37
|
||||
l 46 37
|
||||
l 47 37
|
||||
l 48 37
|
||||
l 49 37
|
||||
l 50 37
|
||||
l 51 37
|
||||
l 52 37
|
||||
l 53 37
|
||||
l 54 37
|
||||
s 1
|
||||
l 55 37
|
||||
l 56 37
|
||||
l 57 37
|
||||
l 58 37
|
||||
l 59 37
|
||||
l 60 37
|
||||
l 61 37
|
||||
l 62 37
|
||||
l 63 37
|
||||
l 64 37
|
||||
p 63 4736286 50644704
|
||||
p 59 4736286 50644704
|
||||
p 60 4736286 50644704
|
||||
p 61 0 50644704
|
||||
p 62 0 55380990
|
||||
p 55 4736286 50644704
|
||||
p 56 4736286 50644704
|
||||
p 57 4736286 52277564
|
||||
p 47 4736286 50644704
|
||||
p 49 3729359 52211783
|
||||
p 50 3729359 52211783
|
||||
p 51 3729359 51425351
|
||||
p 45 3729359 49786951
|
||||
p 5 16181177 46189021
|
||||
p 2 16181177 46189021
|
||||
p 3 15822367 46189021
|
||||
p 1 15822367 46189021
|
||||
p 7 15676232 44195086
|
||||
p 8 15676232 44195086
|
||||
p 9 15676232 44195086
|
||||
p 13 15676232 44837336
|
||||
p 14 15676232 44195086
|
||||
p 16 16894693 42586175
|
||||
p 19 3729359 39538686
|
||||
p 18 3729359 39538686
|
||||
p 20 3729359 39538686
|
||||
p 21 3729359 39538686
|
||||
p 22 3729359 40718334
|
||||
p 23 4805790 37929775
|
||||
p 24 3729359 37929775
|
||||
p 25 34149767 37929775
|
||||
p 26 4805790 36320864
|
||||
p 27 3729359 36320864
|
||||
p 28 34149767 36320864
|
||||
p 29 4805790 34711953
|
||||
p 30 3729359 34711953
|
||||
p 31 34149767 34711953
|
||||
p 32 4805790 33103042
|
||||
p 33 3729359 33103042
|
||||
p 34 34149767 33103042
|
||||
p 35 4805790 31494131
|
||||
p 36 3729359 31494131
|
||||
p 37 34149767 31494131
|
||||
p 40 3729359 29233074
|
||||
p 39 3729359 29233074
|
||||
p 41 3729359 27631143
|
||||
p 42 3729359 26739853
|
||||
p 43 3729359 25848563
|
||||
p 44 3729359 24957273
|
||||
p 53 3729359 3627959
|
||||
p 54 3729359 3627959
|
||||
l 65 38
|
||||
l 66 38
|
||||
l 67 38
|
||||
l 68 40
|
||||
l 69 43
|
||||
l 70 43
|
||||
l 71 43
|
||||
l 72 43
|
||||
l 73 43
|
||||
l 74 43
|
||||
l 75 43
|
||||
l 76 43
|
||||
l 77 43
|
||||
l 78 43
|
||||
l 79 43
|
||||
l 80 43
|
||||
l 81 43
|
||||
l 82 43
|
||||
l 83 43
|
||||
l 84 43
|
||||
l 85 43
|
||||
l 86 43
|
||||
l 87 43
|
||||
l 88 43
|
||||
l 89 43
|
||||
l 90 43
|
||||
l 91 43
|
||||
l 92 43
|
||||
l 93 43
|
||||
l 94 43
|
||||
l 95 43
|
||||
l 96 43
|
||||
l 97 43
|
||||
l 98 43
|
||||
l 99 43
|
||||
l 100 43
|
||||
l 101 43
|
||||
l 102 43
|
||||
l 103 43
|
||||
s 2
|
||||
l 104 43
|
||||
l 105 43
|
||||
l 106 43
|
||||
l 107 43
|
||||
l 108 43
|
||||
l 109 43
|
||||
l 110 43
|
||||
p 107 4736286 50644704
|
||||
p 108 4736286 50644704
|
||||
p 109 0 50644704
|
||||
p 110 0 55380990
|
||||
p 104 4736286 50644704
|
||||
p 105 4736286 50644704
|
||||
p 106 4736286 52277564
|
||||
p 71 4736286 50644704
|
||||
p 73 3729359 52211783
|
||||
p 74 3729359 52211783
|
||||
p 75 3729359 51425351
|
||||
p 76 3729359 51425351
|
||||
p 78 3729359 51425351
|
||||
p 79 3729359 52211783
|
||||
p 80 3729359 51587883
|
||||
p 81 3729359 51587883
|
||||
p 83 3729359 52211783
|
||||
p 82 3729359 52211783
|
||||
p 77 3729359 51587883
|
||||
p 85 3729359 51587883
|
||||
p 84 3729359 51587883
|
||||
p 86 35428917 51587883
|
||||
p 88 3729359 52211783
|
||||
p 87 3729359 52211783
|
||||
p 77 35428917 51587883
|
||||
p 69 3729359 49786951
|
||||
p 67 3729359 49066055
|
||||
p 66 3729359 49066055
|
||||
p 68 3729359 47464124
|
||||
p 89 3729359 3627959
|
||||
p 90 3729359 3627959
|
||||
p 92 3729359 3627959
|
||||
p 93 3729359 4519248
|
||||
p 94 3729359 4519248
|
||||
p 95 3729359 3627959
|
||||
p 96 3729359 3627959
|
||||
p 98 3729359 3627959
|
||||
p 97 3729359 3627959
|
||||
p 100 3729359 4251859
|
||||
p 99 3729359 4251859
|
||||
p 91 19758543 3627959
|
||||
p 101 35428917 3627959
|
||||
p 103 3729359 3627959
|
||||
p 102 3729359 3627959
|
||||
l 111 44
|
||||
l 112 44
|
||||
l 113 44
|
||||
l 114 46
|
||||
l 115 49
|
||||
l 116 49
|
||||
l 117 49
|
||||
l 118 49
|
||||
l 119 49
|
||||
l 120 49
|
||||
l 121 49
|
||||
l 122 49
|
||||
l 123 49
|
||||
l 124 49
|
||||
l 125 49
|
||||
l 126 49
|
||||
l 127 49
|
||||
l 128 49
|
||||
l 129 49
|
||||
l 130 49
|
||||
l 131 49
|
||||
l 132 49
|
||||
l 133 49
|
||||
l 134 49
|
||||
l 135 49
|
||||
l 136 49
|
||||
l 137 49
|
||||
l 138 49
|
||||
l 139 49
|
||||
l 140 49
|
||||
l 141 49
|
||||
l 142 49
|
||||
l 143 49
|
||||
l 144 49
|
||||
l 145 49
|
||||
l 146 49
|
||||
l 147 49
|
||||
l 148 49
|
||||
l 149 49
|
||||
s 3
|
||||
l 150 49
|
||||
l 151 49
|
||||
l 152 49
|
||||
l 153 49
|
||||
l 154 49
|
||||
l 155 49
|
||||
l 156 49
|
||||
p 153 4736286 50644704
|
||||
p 154 4736286 50644704
|
||||
p 155 0 50644704
|
||||
p 156 0 55380990
|
||||
p 150 4736286 50644704
|
||||
p 151 4736286 50644704
|
||||
p 152 4736286 52277564
|
||||
p 117 4736286 50644704
|
||||
p 119 3729359 52211783
|
||||
p 120 3729359 52211783
|
||||
p 121 3729359 51425351
|
||||
p 122 3729359 51425351
|
||||
p 124 3729359 51425351
|
||||
p 125 3729359 52211783
|
||||
p 126 3729359 51587883
|
||||
p 127 3729359 51587883
|
||||
p 129 3729359 52211783
|
||||
p 128 3729359 52211783
|
||||
p 123 3729359 51587883
|
||||
p 131 3729359 51587883
|
||||
p 130 3729359 51587883
|
||||
p 132 35428917 51587883
|
||||
p 134 3729359 52211783
|
||||
p 133 3729359 52211783
|
||||
p 123 35428917 51587883
|
||||
p 115 3729359 49786951
|
||||
p 113 3729359 49066055
|
||||
p 112 3729359 49066055
|
||||
p 114 3729359 47464124
|
||||
p 135 3729359 3627959
|
||||
p 136 3729359 3627959
|
||||
p 138 3729359 3627959
|
||||
p 139 3729359 4519248
|
||||
p 140 3729359 4519248
|
||||
p 141 3729359 3627959
|
||||
p 142 3729359 3627959
|
||||
p 144 3729359 3627959
|
||||
p 143 3729359 3627959
|
||||
p 146 3729359 4251859
|
||||
p 145 3729359 4251859
|
||||
p 137 19758543 3627959
|
||||
p 147 35428917 3627959
|
||||
p 149 3729359 3627959
|
||||
p 148 3729359 3627959
|
||||
l 157 50
|
||||
l 158 50
|
||||
l 159 50
|
||||
l 160 52
|
||||
l 161 55
|
||||
l 162 55
|
||||
l 163 55
|
||||
l 164 55
|
||||
l 165 55
|
||||
l 166 55
|
||||
l 167 55
|
||||
l 168 55
|
||||
l 169 55
|
||||
l 170 55
|
||||
l 171 55
|
||||
l 172 55
|
||||
l 173 55
|
||||
l 174 55
|
||||
l 175 55
|
||||
l 176 55
|
||||
l 177 55
|
||||
l 178 55
|
||||
l 179 55
|
||||
l 180 55
|
||||
l 181 55
|
||||
l 182 55
|
||||
l 183 55
|
||||
l 184 55
|
||||
l 185 55
|
||||
l 186 55
|
||||
l 187 55
|
||||
l 188 55
|
||||
l 189 55
|
||||
l 190 55
|
||||
l 191 55
|
||||
l 192 55
|
||||
l 193 55
|
||||
l 194 55
|
||||
l 195 55
|
||||
s 4
|
||||
l 196 55
|
||||
l 197 55
|
||||
l 198 55
|
||||
l 199 55
|
||||
l 200 55
|
||||
l 201 55
|
||||
l 202 55
|
||||
p 199 4736286 50644704
|
||||
p 200 4736286 50644704
|
||||
p 201 0 50644704
|
||||
p 202 0 55380990
|
||||
p 196 4736286 50644704
|
||||
p 197 4736286 50644704
|
||||
p 198 4736286 52277564
|
||||
p 163 4736286 50644704
|
||||
p 165 3729359 52211783
|
||||
p 166 3729359 52211783
|
||||
p 167 3729359 51425351
|
||||
p 168 3729359 51425351
|
||||
p 170 3729359 51425351
|
||||
p 171 3729359 52211783
|
||||
p 172 3729359 51587883
|
||||
p 173 3729359 51587883
|
||||
p 175 3729359 52211783
|
||||
p 174 3729359 52211783
|
||||
p 169 3729359 51587883
|
||||
p 177 3729359 51587883
|
||||
p 176 3729359 51587883
|
||||
p 178 35428917 51587883
|
||||
p 180 3729359 52211783
|
||||
p 179 3729359 52211783
|
||||
p 169 35428917 51587883
|
||||
p 161 3729359 49786951
|
||||
p 159 3729359 49066055
|
||||
p 158 3729359 49066055
|
||||
p 160 3729359 47464124
|
||||
p 181 3729359 3627959
|
||||
p 182 3729359 3627959
|
||||
p 184 3729359 3627959
|
||||
p 185 3729359 4519248
|
||||
p 186 3729359 4519248
|
||||
p 187 3729359 3627959
|
||||
p 188 3729359 3627959
|
||||
p 190 3729359 3627959
|
||||
p 189 3729359 3627959
|
||||
p 192 3729359 4251859
|
||||
p 191 3729359 4251859
|
||||
p 183 19758543 3627959
|
||||
p 193 35428917 3627959
|
||||
p 195 3729359 3627959
|
||||
p 194 3729359 3627959
|
||||
l 203 56
|
||||
l 204 56
|
||||
l 205 56
|
||||
l 206 58
|
||||
l 207 62
|
||||
l 208 62
|
||||
l 209 62
|
||||
l 210 62
|
||||
l 211 62
|
||||
l 212 62
|
||||
l 213 62
|
||||
l 214 62
|
||||
l 215 62
|
||||
l 216 62
|
||||
l 217 62
|
||||
l 218 62
|
||||
l 219 62
|
||||
l 220 62
|
||||
l 221 62
|
||||
l 222 62
|
||||
l 223 62
|
||||
l 224 62
|
||||
l 225 62
|
||||
l 226 62
|
||||
l 227 62
|
||||
l 228 62
|
||||
l 229 62
|
||||
l 230 62
|
||||
l 231 62
|
||||
l 232 62
|
||||
l 233 62
|
||||
l 234 62
|
||||
l 235 62
|
||||
l 236 62
|
||||
l 237 62
|
||||
l 238 62
|
||||
l 239 62
|
||||
l 240 62
|
||||
l 241 62
|
||||
s 5
|
||||
l 242 62
|
||||
l 243 62
|
||||
l 244 62
|
||||
l 245 62
|
||||
l 246 62
|
||||
l 247 62
|
||||
l 248 62
|
||||
p 245 4736286 50644704
|
||||
p 246 4736286 50644704
|
||||
p 247 0 50644704
|
||||
p 248 0 55380990
|
||||
p 242 4736286 50644704
|
||||
p 243 4736286 50644704
|
||||
p 244 4736286 52277564
|
||||
p 209 4736286 50644704
|
||||
p 211 3729359 52211783
|
||||
p 212 3729359 52211783
|
||||
p 213 3729359 51425351
|
||||
p 214 3729359 51425351
|
||||
p 216 3729359 51425351
|
||||
p 217 3729359 52211783
|
||||
p 218 3729359 51587883
|
||||
p 219 3729359 51587883
|
||||
p 221 3729359 52211783
|
||||
p 220 3729359 52211783
|
||||
p 215 3729359 51587883
|
||||
p 223 3729359 51587883
|
||||
p 222 3729359 51587883
|
||||
p 224 35428917 51587883
|
||||
p 226 3729359 52211783
|
||||
p 225 3729359 52211783
|
||||
p 215 35428917 51587883
|
||||
p 207 3729359 49786951
|
||||
p 205 3729359 49066055
|
||||
p 204 3729359 49066055
|
||||
p 206 3729359 47464124
|
||||
p 227 3729359 3627959
|
||||
p 228 3729359 3627959
|
||||
p 230 3729359 3627959
|
||||
p 231 3729359 4519248
|
||||
p 232 3729359 4519248
|
||||
p 233 3729359 3627959
|
||||
p 234 3729359 3627959
|
||||
p 236 3729359 3627959
|
||||
p 235 3729359 3627959
|
||||
p 238 3729359 4251859
|
||||
p 237 3729359 4251859
|
||||
p 229 19758543 3627959
|
||||
p 239 35428917 3627959
|
||||
p 241 3729359 3627959
|
||||
p 240 3729359 3627959
|
||||
l 249 62
|
||||
l 250 62
|
82
position_paper/paper1.run.xml
Normal file
82
position_paper/paper1.run.xml
Normal file
|
@ -0,0 +1,82 @@
|
|||
<?xml version="1.0" standalone="yes"?>
|
||||
<!-- logreq request file -->
|
||||
<!-- logreq version 1.0 / dtd version 1.0 -->
|
||||
<!-- Do not edit this file! -->
|
||||
<!DOCTYPE requests [
|
||||
<!ELEMENT requests (internal | external)*>
|
||||
<!ELEMENT internal (generic, (provides | requires)*)>
|
||||
<!ELEMENT external (generic, cmdline?, input?, output?, (provides | requires)*)>
|
||||
<!ELEMENT cmdline (binary, (option | infile | outfile)*)>
|
||||
<!ELEMENT input (file)+>
|
||||
<!ELEMENT output (file)+>
|
||||
<!ELEMENT provides (file)+>
|
||||
<!ELEMENT requires (file)+>
|
||||
<!ELEMENT generic (#PCDATA)>
|
||||
<!ELEMENT binary (#PCDATA)>
|
||||
<!ELEMENT option (#PCDATA)>
|
||||
<!ELEMENT infile (#PCDATA)>
|
||||
<!ELEMENT outfile (#PCDATA)>
|
||||
<!ELEMENT file (#PCDATA)>
|
||||
<!ATTLIST requests
|
||||
version CDATA #REQUIRED
|
||||
>
|
||||
<!ATTLIST internal
|
||||
package CDATA #REQUIRED
|
||||
priority (9) #REQUIRED
|
||||
active (0 | 1) #REQUIRED
|
||||
>
|
||||
<!ATTLIST external
|
||||
package CDATA #REQUIRED
|
||||
priority (1 | 2 | 3 | 4 | 5 | 6 | 7 | 8) #REQUIRED
|
||||
active (0 | 1) #REQUIRED
|
||||
>
|
||||
<!ATTLIST provides
|
||||
type (static | dynamic | editable) #REQUIRED
|
||||
>
|
||||
<!ATTLIST requires
|
||||
type (static | dynamic | editable) #REQUIRED
|
||||
>
|
||||
<!ATTLIST file
|
||||
type CDATA #IMPLIED
|
||||
>
|
||||
]>
|
||||
<requests version="1.0">
|
||||
<internal package="biblatex" priority="9" active="0">
|
||||
<generic>latex</generic>
|
||||
<provides type="dynamic">
|
||||
<file>paper1.bcf</file>
|
||||
</provides>
|
||||
<requires type="dynamic">
|
||||
<file>paper1.bbl</file>
|
||||
</requires>
|
||||
<requires type="static">
|
||||
<file>blx-dm.def</file>
|
||||
<file>blx-compat.def</file>
|
||||
<file>biblatex.def</file>
|
||||
<file>standard.bbx</file>
|
||||
<file>numeric.bbx</file>
|
||||
<file>numeric.cbx</file>
|
||||
<file>biblatex.cfg</file>
|
||||
<file>english.lbx</file>
|
||||
</requires>
|
||||
</internal>
|
||||
<external package="biblatex" priority="5" active="0">
|
||||
<generic>biber</generic>
|
||||
<cmdline>
|
||||
<binary>biber</binary>
|
||||
<infile>paper1</infile>
|
||||
</cmdline>
|
||||
<input>
|
||||
<file>paper1.bcf</file>
|
||||
</input>
|
||||
<output>
|
||||
<file>paper1.bbl</file>
|
||||
</output>
|
||||
<provides type="dynamic">
|
||||
<file>paper1.bbl</file>
|
||||
</provides>
|
||||
<requires type="dynamic">
|
||||
<file>paper1.bcf</file>
|
||||
</requires>
|
||||
</external>
|
||||
</requests>
|
BIN
position_paper/paper1.synctex.gz
Normal file
BIN
position_paper/paper1.synctex.gz
Normal file
Binary file not shown.
79
position_paper/paper1.tex
Normal file
79
position_paper/paper1.tex
Normal file
|
@ -0,0 +1,79 @@
|
|||
\documentclass[
|
||||
letterpaper, % Paper size, use either a4paper or letterpaper
|
||||
10pt, % Default font size, can also use 11pt or 12pt, although this is not recommended
|
||||
unnumberedsections, % Comment to enable section numbering
|
||||
twoside, % Two side traditional mode where headers and footers change between odd and even pages, comment this option to make them fixed
|
||||
]{LTJournalArticle}
|
||||
|
||||
|
||||
\runninghead{The Code of Knowing} % A shortened article title to appear in the running head, leave this command empty for no running head
|
||||
|
||||
\footertext{\textit{PHIL 101, University of North Carolina} (2023)} % Text to appear in the footer, leave this command empty for no footer text
|
||||
|
||||
\setcounter{page}{1} % The page number of the first page, set this to a higher number if the article is to be part of an issue or larger work
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% TITLE SECTION
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\title{From Scriptures to Society: A Dialogical Approach to Class Equality in Hinduism and Christianity} % Article title, use manual lines breaks (\\) to beautify the layout
|
||||
|
||||
% Authors are listed in a comma-separated list with superscript numbers indicating affiliations
|
||||
% \thanks{} is used for any text that should be placed in a footnote on the first page, such as the corresponding author's email, journal acceptance dates, a copyright/license notice, keywords, etc
|
||||
\author{%
|
||||
Rushil Umaretiya, Sara Simmons, Ananya Yenduri, Carolus Wang
|
||||
}
|
||||
|
||||
% Affiliations are output in the \date{} command
|
||||
\date{\footnotesize{The University of North Carolina at Chapel Hill}}
|
||||
% Full-width abstract
|
||||
\renewcommand{\maketitlehookd}{%
|
||||
|
||||
}
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\begin{document}
|
||||
|
||||
\maketitle % Output the title section
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% ARTICLE CONTENTS
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\section{Introduction}
|
||||
The differences between Hindu and Christian views on class equality give us a nuanced lens to view and tackle today’s issues with racial and economic systemic inequality in America. In American culture, which is heavily influenced by Christian ideals, there is a large focus on how one must put forth individual effort to break down class barriers. On the other hand, Hindu beliefs highlight how important it is for an individual to fulfill their duty to the community by keeping a strong social balance. When we view the modern political climate through this dual-ideology, it shows us that we might be able to create policies that not only support individual hard work, but also ensure that the greater society is able to ensure equality for all.
|
||||
|
||||
In the United States, individualism upholds a lasting tradition rooted within ideals of Christianity. While various authors delivered their sympathies for it, an individualistic approach also predestined the nation’s future of division between social classes through exercising its influence on political institutions. Through the individualists’ natural tendency of insisting on a government with a minimal presence in the social sphere, the aspect of government’s role in redistribution in alleviating social inequality is greatly impaired, and a conscious effort to address the issue is largely neglected.
|
||||
|
||||
Among the early pioneers of individualism, Henry David Thoreau ties together both freedom and equality in regards to Christianity and American Democracy. Thoreau specifically draws a comparison between democracy in the U.S. and Europe in an attempt to illustrate his fondness for a lifestyle of “wildness and freedom” (Thoreau 2017: 8) and to lay an emphasis for his vision of America as more preferable. As Thoreau enumerates, the vastness of the U.S : “wood or meadow or deserted pasture or hill” (Thoreau 2017:8) is a land of prospect and freedom which he is attracted to roam about. Whereas when Thoreau mentions Europe, which he refers to as the “east”, he considers it to be a place of stagnation and ossification due to densely constructed institutions, a place where he would never be willingly. Thoreau clearly states that democracy is successful in America because of the emphasis on individualism, which is encouraged by Christianity. In the end, he stressed that people of the states ought not adhere to the old Europe, for the future lies on the “Lethe of the Pacific” (Thoreau 2017 :8).
|
||||
|
||||
Hinduism, on the other hand, with its rich interwoven tales and legends, is able to offer us a unique perspective on the issues of class equality and systemic inequality. By examining fundamental principles of Hindu philosophy and social structure, we can gain new insight on how Hinduism approaches these issues of racial inequality and relate it to the current contemporary political ignorance behind a majority of issues faced by the greater samaj.
|
||||
|
||||
At the heart of Hindu society lies the concept of dharma, a multifaceted term that encompasses duty, righteousness, and moral correctness. Dharma dictates how each individual carries specific responsibilities and duties to their greater community based on their societal role, gender, and social class. This sense of duty extends beyond simple notions of tasks or service of the individual, but emphasizes the importance of maintaining a sense of balance and harmony within the larger community and society.
|
||||
|
||||
For the Newar people of Bhaktapur, Nepal, as illustrated by Steven Parish in Moral Knowing in a Hindu Sacred City, dharma is experienced simultaneously as religious, ethical, and social obligation. Parish says, “‘Society’ has priority over “self” in Newar moral thought, at least relative to the extreme individualism cherished by some in the Western world,” (Parish 1994:118). It is not only the personal or spiritual journey, but a collective responsibility to uphold moral and social order. The communal aspect of dharma fosters a sense of interconnectedness and mutual dependence on your neighbor. Newar society highlights the importance of each individual’s role in maintaining a societal balance. Not only is the act of practicing dharma used in order to form a samaj; it plays a significant role in sustaining ancient values: “With this sacrificial obligation did the gods offer the sacrifice. They were the first norms [dharma] of sacrifice,” (Rg. veda 10.90).
|
||||
|
||||
\section{Religious Perspectives on Class Equality}
|
||||
Contrasting this idea of societal harmony, Hindu society has historically been organized into a rigid caste system, which categorizes individuals based on their birth and places them into certain social roles. While in the modern age this system has been federally abolished, its cultural and societal aftershocks still ring throughout Hindu society and it still lives in the minds of many Hindus today. Dumont writes when describing the caste system, “Think rather of the child, slowly brought to humanity by his upbringing in the family by the apprenticeship of language and moral judgment … which makes him share in the common patrimony” (Dumont 1970: 5) This system has been a tool of centuries of oppression with lower castes being restricted access to wealth, education, occupation, and livelihoods.
|
||||
|
||||
Even though this hierarchy was written into society through hymns for centuries, it is crucial to understand that Hindu scripture also strongly emphasizes the intrinsic equality of all souls, regardless of caste or social status. “The Brahman was his mouth, of both his arms was the Rājanya made. His thighs became the Vaiśya, from his feet the Śūdra was produced.” (Rg. veda 10.90). The Gita, a central Hindu text, teaches the eternal soul beyond birth and death, and that all souls are equal in the eyes of the divine. This spiritual equality serves as a stark counterpoint to the inequality at the core of the caste system, creating a complex and often contradictory view on class and equality.
|
||||
|
||||
With regards to Christianity and the ideal of individualism, extreme aspects of the religion were viewed as a threat to democracy. Hamilton argues that the Calvinist perspective affects the U.S. political system in which vigilance and distrust was prioritized during the devising process. Due to a negative view on human nature, the founders believed that people with power would exert every opportunity to expand and retain that power as a result of their inborn greed. Thus, when envisioning the future political system, the founders also set up guards in advance to prohibit centralization of power. A notable example would be the “division of power” into multiple branches and a further separation of the legislature as two entities to prevent the aggregation of power (Hamilton 2001:299).
|
||||
|
||||
Tocqueville is another author that had distinct views on Christianity and American politics. In Tocqueville’s notion of America, Christianity serves as a potent factor contributing to democracy, while also providing a theoretical basis for equality. Without equality in our laws and society, a cap is put on individualism. If humans do not have the same opportunities or resources available to them, they can not all succeed at their highest level. Christianity also encourages individualism. One of the founding ideas of Christianity is “God created man to his own image: male and female he created them.” (Genesis 1:29). This shows that each person is their own individual and are unique while also being identical in essence. Toqueville says, “Poetry, eloquence, and memory, the graces of the mind, the fire of imagination, depth of thought, and all the gifts which Heaven scatters at aventure turned to the advantage of democracy; and even when they were in the possession of its adversaries, they still served its cause by throwing into bold relief the natural greatness of man” (Tocqueville 1994: 2). This quote clearly shows the connection between religion, democracy, and the individualistic nature of humans. This being said, at the time Toqueville wrote this article, freedom and equality did not necessarily exist for everyone in America. While most white, successful men (like Toquiville) had the freedom to pursue their own desires and be “free” within the law, slavery still existed and women were far from being considered equal to their male counterparts.
|
||||
\section{Modern Political Implications}
|
||||
|
||||
Modern America has come a long way from its inequality of the past. However, it is still hard to genuinely say that all Americans are equal. According to a 2016 study conducted by Pew Research Center, 43\% of non-white Americans agreed with the statement that “our country will not make the changes needed to give blacks equal rights with whites” (Pew 2016:1). In addition to this, a study done by the American Association of University Women states that, “Women working full time in the U.S. are still paid just 84 cents to every dollar earned by men — and the consequences of this gap affect women throughout their lives. The pay gap even follows women into retirement: As a result of lower lifetime earnings, they receive less in Social Security and pensions. In terms of overall retirement income, women have only 70\% of what men do” (AAUW 2020 : 1). This study shows that while women may now be viewed as equals to their male counterparts, most still economically are not.
|
||||
|
||||
The Hindu emphasis on community and interconnectedness also provides us a valuable perspective in addressing systemic inequality. Unlike the individualistic approach in Western, Christian-influenced societies, Hinduism encourages individuals to see themselves as a part of the larger whole, with duties and responsibility to the community. Community, a term which encompasses those of higher and lower class and caste than the individual, is something that the soul is bound to; providing for such gives one’s being value.
|
||||
|
||||
Addressing the persistent issues of racial and economic disparity in the United States necessitates a practical application of Hindu concepts such as dharma (duty/righteousness) and samaj (community/society). By embedding the principles of dharma in our societal structures, we can promote a sense of shared responsibility among individuals to actively participate in dismantling systemic inequalities. This involves creating and enforcing policies that ensure equal opportunities in education and healthcare, regardless of one's racial background, thereby addressing some of the root causes of disparity.
|
||||
|
||||
\section{Conclusion}
|
||||
By examining the distinct perspectives of Hinduism and Christianity on class equality and systemic inequality, this paper unveils a multifaceted understanding of these deep-seated issues within American society. Hinduism, with its doctrine of dharma, encourages a sense of duty to the community and promotes social balance, urging individuals to view themselves as integral parts of a larger whole. Christianity’s influence on American values underscores the power of individual effort and personal accountability, essential for overcoming systemic barriers. Yet, isolated, each perspective offers an incomplete solution; the American emphasis on individualism can lead to neglect of systemic issues, while a solely community-focused approach may overlook the transformative potential of individual agency.
|
||||
|
||||
Synthesizing the strengths of both Hindu and Christian perspectives, we can foster a balanced view that promotes individual empowerment within a framework of social responsibility. This harmonious blend advocates for policies that support personal diligence while concurrently addressing structural inequalities, aiming for a society that values both individual achievement and communal well-being. In navigating the challenges of racial and economic inequality, this dual perspective serves as a comprehensive lens, guiding the pursuit of a more equitable and just society.
|
||||
|
||||
|
||||
\end{document}
|
Binary file not shown.
BIN
readings/Wood_American Religion-The Great Retreat.pdf
Normal file
BIN
readings/Wood_American Religion-The Great Retreat.pdf
Normal file
Binary file not shown.
BIN
reli_syllabus.pdf
Normal file
BIN
reli_syllabus.pdf
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user