Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
sphinx /
texinputs /
[ HOME SHELL ]
Name
Size
Permission
Action
LICRcyr2utf8.xdy
4.26
KB
-rw-r--r--
LICRlatin2utf8.xdy
9.95
KB
-rw-r--r--
LatinRules.xdy
18.25
KB
-rw-r--r--
Makefile_t
2.34
KB
-rw-r--r--
latexmkjarc_t
695
B
-rw-r--r--
latexmkrc_t
1.08
KB
-rw-r--r--
make.bat_t
1.02
KB
-rw-r--r--
python.ist
392
B
-rw-r--r--
sphinx.sty
12.95
KB
-rw-r--r--
sphinx.xdy
9.25
KB
-rw-r--r--
sphinxhowto.cls
3.18
KB
-rw-r--r--
sphinxlatexadmonitions.sty
6.09
KB
-rw-r--r--
sphinxlatexcontainers.sty
901
B
-rw-r--r--
sphinxlatexgraphics.sty
4.73
KB
-rw-r--r--
sphinxlatexindbibtoc.sty
2.02
KB
-rw-r--r--
sphinxlatexlists.sty
3.46
KB
-rw-r--r--
sphinxlatexliterals.sty
34.32
KB
-rw-r--r--
sphinxlatexnumfig.sty
4.43
KB
-rw-r--r--
sphinxlatexobjects.sty
7.1
KB
-rw-r--r--
sphinxlatexshadowbox.sty
3.79
KB
-rw-r--r--
sphinxlatexstyleheadings.sty
3.18
KB
-rw-r--r--
sphinxlatexstylepage.sty
2.99
KB
-rw-r--r--
sphinxlatexstyletext.sty
5.64
KB
-rw-r--r--
sphinxlatextables.sty
21.34
KB
-rw-r--r--
sphinxmanual.cls
4.14
KB
-rw-r--r--
sphinxoptionsgeometry.sty
2.01
KB
-rw-r--r--
sphinxoptionshyperref.sty
1.07
KB
-rw-r--r--
sphinxpackagecyrillic.sty
2.53
KB
-rw-r--r--
sphinxpackagefootnote.sty
12.94
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sphinxlatexgraphics.sty
%% GRAPHICS % % change this info string if making any custom modification \ProvidesFile{sphinxlatexgraphics.sty}[2021/01/27 graphics] % Provides support for this output mark-up from Sphinx latex writer: % % - macros: % % - \sphinxfigcaption % - \sphinxincludegraphics % % - environments: % % - sphinxfigure-in-table % % May change: % % - \sphinxcaption (at begin document) % % Also provides: % % - \sphinxsafeincludegraphics (default of \sphinxincludegraphics since 2.0) % - \spx@image@maxheight dimension (used by sphinxlatexadmonitions.sty) % - \spx@image@box scratch box register (also used by sphinxlatexliterals.sty) % % Requires: % \RequirePackage{graphicx}% done in sphinx.sty \RequirePackage{amstext}% needed for \firstchoice@true(false) % \sphinxincludegraphics resizes images larger than the TeX \linewidth (which % is adjusted in indented environments), or taller than a certain maximal % height (usually \textheight and this is reduced in the environments which use % framed.sty to avoid infinite loop if image too tall). % % In case height or width options are present the rescaling is done % (since 2.0), in a way keeping the width:height ratio either native from % image or from the width and height options if both were present. % \newdimen\spx@image@maxheight \AtBeginDocument{\spx@image@maxheight\textheight} % box scratch register \newbox\spx@image@box \newcommand*{\sphinxsafeincludegraphics}[2][]{% % #1 contains possibly width=, height=, but no scale= since 1.8.4 \setbox\spx@image@box\hbox{\includegraphics[#1,draft]{#2}}% \in@false % use some handy boolean flag \ifdim \wd\spx@image@box>\linewidth \in@true % flag to remember to adjust options and set box dimensions % compute height which results from rescaling width to \linewidth % and keep current aspect ratio. multiply-divide in \numexpr uses % temporarily doubled precision, hence no overflow. (of course we % assume \ht is not a few sp's below \maxdimen...(about 16384pt). \edef\spx@image@rescaledheight % with sp units {\the\numexpr\ht\spx@image@box *\linewidth/\wd\spx@image@box sp}% \ifdim\spx@image@rescaledheight>\spx@image@maxheight % the rescaled height will be too big, so it is height which decides % the rescaling factor \def\spx@image@requiredheight{\spx@image@maxheight}% dimen register \edef\spx@image@requiredwidth % with sp units {\the\numexpr\wd\spx@image@box *\spx@image@maxheight/\ht\spx@image@box sp}% % TODO: decide if this commented-out block could be needed due to % rounding in numexpr operations going up % \ifdim\spx@image@requiredwidth>\linewidth % \def\spx@image@requiredwidth{\linewidth}% dimen register % \fi \else \def\spx@image@requiredwidth{\linewidth}% dimen register \let\spx@image@requiredheight\spx@image@rescaledheight% sp units \fi \else % width is ok, let's check height \ifdim\ht\spx@image@box>\spx@image@maxheight \in@true \edef\spx@image@requiredwidth % with sp units {\the\numexpr\wd\spx@image@box *\spx@image@maxheight/\ht\spx@image@box sp}% \def\spx@image@requiredheight{\spx@image@maxheight}% dimen register \fi \fi % end of check of width and height \ifin@ \setbox\spx@image@box \hbox{\includegraphics [%#1,% contained only width and/or height and overruled anyhow width=\spx@image@requiredwidth,height=\spx@image@requiredheight]% {#2}}% % \includegraphics does not set box dimensions to the exactly % requested ones, see https://github.com/latex3/latex2e/issues/112 \wd\spx@image@box\spx@image@requiredwidth \ht\spx@image@box\spx@image@requiredheight \leavevmode\box\spx@image@box \else % here we do not modify the options, no need to adjust width and height % on output, they will be computed exactly as with "draft" option \setbox\spx@image@box\box\voidb@x % clear memory \includegraphics[#1]{#2}% \fi }% % Use the "safe" one by default (2.0) \def\sphinxincludegraphics{\sphinxsafeincludegraphics} %% FIGURE IN TABLE % \newenvironment{sphinxfigure-in-table}[1][\linewidth]{% \def\@captype{figure}% \sphinxsetvskipsforfigintablecaption \begin{minipage}{#1}% }{\end{minipage}} % tabulary expands twice contents, we need to prevent double counter stepping \newcommand*\sphinxfigcaption {\ifx\equation$%$% this is trick to identify tabulary first pass \firstchoice@false\else\firstchoice@true\fi \spx@originalcaption } \newcommand*\sphinxsetvskipsforfigintablecaption {\abovecaptionskip\smallskipamount \belowcaptionskip\smallskipamount} \endinput
Close