My aim was to make horizontal lists and followed this question(See the answer from @SDrolet): How to make horizontal lists?
And now I have the following (UPDATE)
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{tasks}
\usepackage{amssymb}
\begin{document}
\begin{tasks}[counter-format={(tsk[r])}, label-align=left, label-offset={10mm}, label-width={10mm}, label-format={\bfseries}](2)
\task Robotics
\task Remote Sensing
\task Bio-medical Applications
\task Military Applications
\task Equipment Monitoring and Diagnostics
\task Transportation Systems
\end{tasks}
\end{document}
Which produces the result(see:-item: Equipment Monitoring and Diagnostics which is not intended properly):
I would like to inden the item (V) as follows:
(V) Equipment Monitoring
and Diagnostics
How to make the proper indentation in this case?



\documentclass{article}and using packagetasksI couldn't reproduce your problem. You should probably play withlabel-offsetandlabel-width. Though if you post a MWE, a compilable code showing your problem, you can get more help – bmv Apr 20 '18 at 13:55talkscome from. You are much much more likely to get help if you provide a minimal but full example that others can just copy and test as is. Then it is also a lot easier for others to pinpoint the problem and provide suggestions. As your question sits now, users trying to help have to provide 2/3 of a document you test it. – daleif Apr 20 '18 at 13:56