Difference between revisions of "Latex Tips"
Jump to navigation
Jump to search
(New page: <meta name="title" content="Latex Tips"/> {{h2|Latex Tips}} * To resize a table or maybe a figure which is very large and is bigger than the textwidth by putting \resizebox{0.9\textwidth}{...) |
|||
(4 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
− | <meta name="title" content="Latex Tips"/> | + | <!-- <meta name="title" content="Latex Tips"/> --> |
{{h2|Latex Tips}} | {{h2|Latex Tips}} | ||
− | * To resize a table or maybe a figure which is very large and is bigger | + | * To resize a table or maybe a figure which is very large and is bigger the textwidth do the following: |
+ | \resizebox{0.9\textwidth}{!}{ \begin{tabular} \end{tabular} } | ||
+ | * To make a table and a figure appear together use the \afterpage{} environment: | ||
+ | \afterpage{\begin{figure} \end{figure} \begin{table} \end{table} } |
Latest revision as of 00:55, 3 July 2022
Latex Tips
- To resize a table or maybe a figure which is very large and is bigger the textwidth do the following:
\resizebox{0.9\textwidth}{!}{ \begin{tabular} \end{tabular} }
- To make a table and a figure appear together use the \afterpage{} environment:
\afterpage{\begin{figure} \end{figure} \begin{table} \end{table} }