Guest User

Untitled

a guest
Jul 17th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. % caption and label
  2. \newcommand*{\caplab}[2]{\caption{#1}\label{#2}}
  3. % \myfig{file}{caption}{label}
  4. \newcommand{\myfig}[3]{%
  5. \begin{figure}[ht]%
  6. \begin{center}%
  7. \includegraphics[width=.8\linewidth]{#1}%
  8. \caplab{#2}{#3}%
  9. \end{center}%
  10. \end{figure}}
  11. % table for report \begin{mytable}[htbp]{caption}{label}{llrrcc...}
  12. \newenvironment*{mytable}[4][htbp]%
  13. {\begin{table}[#1]%
  14. \begin{center}%
  15. \caplab{#2}{#3}%
  16. \begin{tabular}{#4}}%
  17. {\end{tabular}%
  18. \end{center}%
  19. \end{table}}
  20.  
  21. % これを\begin{document}の前とかに書いておいて,画像を入れる時は
  22. % \myfig{image.path}{caption}{fig:label}
  23. % 表を入れる時は
  24. % \begin{mytable}[htbp]{caption}{tab:label}{ll|rrcc...}
  25. % hoge & fuga &...\\
  26. % \end{mytable}
  27. % とかやるとキャプションをつけてくれて,ラベルも貼ってくれるから,\ref{fig:label}で参照したりできます
Add Comment
Please, Sign In to add comment