Skip to content

Commit

Permalink
Modify table layout of pdf tex template (#16173)
Browse files Browse the repository at this point in the history
  • Loading branch information
curiousRay committed Jan 29, 2024
1 parent e257472 commit 3a808d9
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions templates/template.tex
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
\usepackage{setspace}
\setstretch{$linestretch$}
$endif$
\usepackage{etoolbox}
\usepackage{xstring}
\usepackage{amssymb,amsmath}
\usepackage{ifxetex,ifluatex}
\usepackage{fixltx2e} % provides \textsubscript
Expand Down Expand Up @@ -92,6 +94,14 @@
$endif$
$if(tables)$
\usepackage{longtable,booktabs}
% set table to left-aligned
\setlength\LTleft{0pt}
\setlength\LTright{0pt}
% fill the columns to page width
\makeatletter
\patchcmd\LT@array{\tabskip\z@}{\extracolsep{\fill}}
\makeatletter

$endif$
$if(graphics)$
\usepackage{graphicx,grffile}
Expand All @@ -113,8 +123,8 @@
\fi
\hypersetup{breaklinks=true,
bookmarks=true,
pdfauthor={$author-meta$},
pdftitle={$title-meta$},
pdfauthor={$author$},
pdftitle={$title$},
colorlinks=true,
citecolor=$if(citecolor)$$citecolor$$else$blue$endif$,
urlcolor=$if(urlcolor)$$urlcolor$$else$blue$endif$,
Expand Down Expand Up @@ -326,4 +336,4 @@
$include-after$

$endfor$
\end{document}
\end{document}

0 comments on commit 3a808d9

Please sign in to comment.