Guest User

Untitled

a guest
Feb 17th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. documentclass{article}
  2. usepackage{titlesec,xcolor}
  3.  
  4. begin{document}
  5. titleformat{section}
  6. {normalfontbfseriescolor{blue}}
  7. {thesection.}
  8. {1em}
  9. {}
  10. section{my colored section}
  11.  
  12. titleformat{section}[leftmargin]% only the optional argument "leftmargin" added
  13. {normalfontbfseriescolor{blue}}
  14. {thesection.}
  15. {1em}
  16. {}
  17. section{The Color Unchanged}
  18.  
  19. end{document}
  20.  
  21. documentclass{article}
  22. usepackage{,xcolor, titlesec}
  23.  
  24. begin{document}
  25. titleformat{section}
  26. {normalfontbfseriescolor{blue}}
  27. {thesection.}
  28. {1em}
  29. {}
  30. section{my colored section}
  31.  
  32. titleformat{section}[leftmargin]% only the optional argument "leftmargin" added
  33. {normalfontbfseries}
  34. {color{blue}thesection.}
  35. {1em}
  36. {color{blue}}
  37. section{The Color Unchanged}
  38.  
  39. end{document}
Add Comment
Please, Sign In to add comment