tab.sublime-snippet 528 B

12345678910111213141516171819202122
  1. <snippet>
  2. <content><![CDATA[
  3. \begin{table}
  4. \centering
  5. \caption{
  6. ${1}
  7. }
  8. \label{tab:${2}}
  9. \begin{tabular}{${3:ccc}}
  10. \toprule
  11. ${4:HEAD} \\\\
  12. \midrule
  13. ${5:BODY} \\\\
  14. \bottomrule
  15. \end{tabular}
  16. \end{table}
  17. ]]></content>
  18. <!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
  19. <tabTrigger>tab</tabTrigger>
  20. <!-- Optional: Set a scope to limit where the snippet will trigger -->
  21. <!-- <scope>source.python</scope> -->
  22. </snippet>