feat(latex): add paper summary appendix

This commit is contained in:
Rifqi D. Panuluh
2025-10-14 11:47:14 +00:00
parent d5bf0c6fc9
commit 76969f9311
20 changed files with 371 additions and 536 deletions

View File

@@ -0,0 +1,45 @@
\usepackage{multirow}
\usepackage{array}
% \usepackage{makecell}
\usepackage{lscape}
\usepackage{etoolbox}
\usepackage{longtable,booktabs}
\usepackage{colortbl,xcolor}
\usepackage{enumitem}
\usepackage{pdfpages}
\usepackage{caption}
\definecolor{Gray}{gray}{0.95}
\newcolumntype{a}{>{\columncolor{Gray}}p}
\renewcommand{\thefootnote}{\textit{\alph{footnote}}}
% \newcolumntype{b}{>{\raggedright\arraybackslash}p}
\makeatletter
% Define rlandscape (right-rotated landscape)
\newenvironment{rlandscape}{%
% Temporarily flip the rotation direction
\patchcmd{\LS@rot}{90}{-90}{}{}
\patchcmd{\endlandscape}{90}{-90}{}{}
% Begin a normal landscape
\begin{landscape}
}{%
% End the landscape
\end{landscape}
% Restore the default rotation (so it doesnt affect other landscapes)
\patchcmd{\LS@rot}{-90}{90}{}{}
\patchcmd{\endlandscape}{-90}{90}{}{}
}
\makeatother
\newcounter{customcounter}
% Environment where \thecustomcounter increments on every use
\newenvironment{customcounterenv}{%
\begingroup
% reset to 0 at env start so first use prints 1
\setcounter{customcounter}{0}%
% locally redefine \thecustomcounter: step, then print arabic value
\renewcommand{\thecustomcounter}{\stepcounter{customcounter}\arabic{customcounter}}%
}{%
\endgroup
}