Guest User

Untitled

a guest
Jan 16th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. begin{enumerate}[leftmargin=0.85cm, label=Aarabic*.]
  2. item First item
  3. item Second item
  4. end{enumerate}
  5.  
  6. write some other text here
  7.  
  8. % write another enumerated list here of the same type, but continuing with the numbering of the previous one.
  9. begin{enumerate}[leftmargin=0.85cm, label=Aarabic*.]
  10. item First item
  11. item Second item
  12. end{enumerate}
  13.  
  14. documentclass{article}
  15. usepackage{enumitem}
  16.  
  17. begin{document}
  18.  
  19. begin{enumerate}[leftmargin=0.85cm, label=Aarabic*.]
  20. item First item
  21. item Second item
  22. end{enumerate}
  23. If you don't mind having to re-specify everything:
  24. begin{enumerate}[leftmargin=0.85cm, label=Aarabic*., resume]
  25. item Third item
  26. item Fourth item
  27. end{enumerate}
  28. If you would prefer not to re-specify:
  29. begin{enumerate}[resume*]
  30. item Fifth item
  31. item Sixth item
  32. end{enumerate}
  33. What if you want to use first one enumeration:
  34. begin{enumerate}[leftmargin=0.85cm, label=Darabic*., series=denum]
  35. item First item
  36. item Second item
  37. end{enumerate}
  38. And then another:
  39. begin{enumerate}[leftmargin=0.85cm, label=(alph*)., series=alphenum]
  40. item First item
  41. item Second item
  42. end{enumerate}
  43. And then you want to continue the first?
  44. begin{enumerate}[resume*=denum]
  45. item Third item
  46. item Fourth item
  47. end{enumerate}
  48. Perhaps you even want to continue the second:
  49. begin{enumerate}[resume*=alphenum]
  50. item Third item
  51. item Fourth item
  52. end{enumerate}
  53. Too much work?
  54. newlist{blist}{enumerate}{1}
  55. setlist[blist]{leftmargin=0.85cm, label=Barabic*.}
  56. begin{blist}
  57. item First item
  58. item Second item
  59. end{blist}
  60. And then you can have something entirely different:
  61. begin{enumerate}[leftmargin=.3textwidth, label=Roman*)]
  62. item First Roman
  63. item Second Roman
  64. end{enumerate}
  65. Before continuing:
  66. begin{blist}[resume]
  67. item Third item
  68. item Fourth item
  69. end{blist}
  70.  
  71. end{document}
Add Comment
Please, Sign In to add comment