array
environment that contents 3 columns and all its elements are \displaystyle
ones, something I can use repeatedly throughout a document. Any idea to do that?array
environment that contents 3 columns and all its elements are \displaystyle
ones, something I can use repeatedly throughout a document. Any idea to do that?Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Code: Select all
% in the preamble:
\usepackage{multienum}
\settowidth{\labelwidth}{\textbf{1.99)}}
...
\begin{multienumerate}
\everymath{\displaystyle}
\renewcommand{\labelenumi}{\addtocounter{multienumi}{1}\textbf{1.\arabic{multienumi})}}
\mitemxxx
{$\int 2x - 3x^2\,dx$}
{$\int 2x - 3x^2\,dx$}
{$\int x^{3/2} + 2x + 1\,dx$}
\mitemxxx
{$\int \frac{\sqrt{5x}}{5} + \frac{5}{\sqrt{5x}}\,dx$}
{$\int (2t^2 - 1)^2\,dt$}
{$\int 2 \sen x + 3 \cos x\,dx$}
\end{multienumerate}
Code: Select all
\documentclass{article}
\usepackage{tasks}
\begin{document}
\begin{tasks}[item-format=\everymath{\displaystyle}](3)
\task $\int 2x - 3x^2\,dx$
\task $\int 2x - 3x^2\,dx$
\task $\int x^{3/2} + 2x + 1\,dx$
\task $\int \frac{\sqrt{5x}}{5} + \frac{5}{\sqrt{5x}}\,dx$
\task $\int (2t^2 - 1)^2\,dt$
\task $\int 2 \sin x + 3 \cos x\,dx$
\end{tasks}
\end{document}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis