fig.sublime-snippet 478 B

12345678910111213141516
  1. <snippet>
  2. <content><![CDATA[
  3. \begin{figure}[h]
  4. \centering
  5. \includegraphics[width=${1:0.5}\linewidth]{img/${2:foo}.${3:jpeg}}
  6. \caption{
  7. ${4:Schönes Bildchen}
  8. }
  9. \label{fig:${2:foo}}
  10. \end{figure}
  11. ]]></content>
  12. <!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
  13. <tabTrigger>fig</tabTrigger>
  14. <!-- Optional: Set a scope to limit where the snippet will trigger -->
  15. <!-- <scope>source.python</scope> -->
  16. </snippet>