Graphics, Figures & Tables ⇒ {multicol} not quite working well enough for my purpose
-
- Posts: 9
- Joined: Mon Sep 10, 2018 4:12 am
{multicol} not quite working well enough for my purpose
- Attachments
-
- Screen Shot 2018-09-09 at 9.17.03 PM.png (28.89 KiB) Viewed 3548 times
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
{multicol} not quite working well enough for my purpose
i don't understand the problem right now. I neither know what you have so far, nor how you try to achieve what you want. Or what it is exactly you are trying to achieve. Can you give a code example?
- Stefan Kottwitz
- Site Admin
- Posts: 10330
- Joined: Mon Mar 10, 2008 9:44 pm
{multicol} not quite working well enough for my purpose
welcome to the forum!
You could use the

Code: Select all
\documentclass{article}
\usepackage{tasks}
\DeclareInstance{tasks}{alphabetize}{default}{counter-format = {tsk[a].)},
label-width = 1.4em}
\begin{document}
\begin{tasks}(2)
\task First
\task Second
\task Third
\task Fourth
\end{tasks}
\end{document}

Stefan
-
- Posts: 9
- Joined: Mon Sep 10, 2018 4:12 am
{multicol} not quite working well enough for my purpose
-Joe
\documentclass{article}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{tasks}
\newcommand*{\Scale}[2][4]{\scalebox{#1}{$#2$}}%
\newcommand*{\Resize}[2]{\resizebox{#1}{!}{$#2$}}%
\begin{document}
\DeclareInstance{tasks}{alphabetize}{default}{counter-format = {tsk[a].)},
label-width = 1.4em}
\begin{tasks}(2)
\task Firstasdna;lksdn;laksndcl;ansdc;lansdclknaslkcnalskdnclaksndclkansdclkansdl;cnals;dcn
\task Second
\task Third
\task Fourthalksdnflaksndflaksndfl;asnd;lasndl;ansdl;fnasl;dfnasl;dnfal;skdnfla;ksdnfl;asndflasndfalksdjlaksjdlaksdjlkajsdl;kasdl;kasdvl;kansdlvk;ansl;kvnasl;kvnaoishoqwi;lv;alksnv;kasnv;kasdvk;ajns,askd asdv
\task Fifth
\end{tasks}
\end{document}
- Attachments
-
- Screen Shot 2018-09-10 at 11.51.42 AM.png (108.18 KiB) Viewed 3530 times
-
- Posts: 9
- Joined: Mon Sep 10, 2018 4:12 am
{multicol} not quite working well enough for my purpose
-
- Posts: 9
- Joined: Mon Sep 10, 2018 4:12 am
{multicol} not quite working well enough for my purpose
\noindent\textbf{Example 2.} Determine if the following numbers appear to be rational or irrational
\begin{tasks}(2)
\task \textbf{a.)} $3.141592653589793\dots$
$irrational$
\task \textbf{b.)} $803.9292929292929292\dots$
$rational$
\task \textbf{c.)} $.3333333333333333\dots$
$rational$
\task \textbf{d.)} $1.414213562373095\dots$
$irrational$
\end{tasks}
\begin{multicols}{2}
\textbf{a.)} $3.141592653589793\dots$
$irrational$
\textbf{c.)} $.3333333333333333\dots$
$rational$
\textbf{b.)} $803.9292929292929292\dots$
$rational$
\textbf{d.)} $1.414213562373095\dots$
$irrational$
\end{multicols}
- Attachments
-
- Screen Shot 2018-09-10 at 1.04.57 PM.png (290.92 KiB) Viewed 3527 times
- Stefan Kottwitz
- Site Admin
- Posts: 10330
- Joined: Mon Mar 10, 2008 9:44 pm
{multicol} not quite working well enough for my purpose
Anyway, the example above with emptied label:
Code: Select all
\documentclass{article}
\usepackage{tasks}
\DeclareInstance{tasks}{alphabetize}{default}{counter-format = {},
label-width = 0em}
\begin{document}
\begin{tasks}(2)
\task \textbf{a.)} First
\task \textbf{b.)} Second
\task \textbf{c.)} Third
\task \textbf{d.)} Fourth
\end{tasks}
\end{document}
\textbf
and such font commands within a document, as I would use styles that I define in the preamble.Stefan