Advertisement
Guest User

Untitled

a guest
Mar 25th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. documentclass{memoir}
  2. usepackage[demo]{graphicx}
  3. usepackage{amsmath}
  4.  
  5. newcommandlistequationname{List of Equations}
  6. newlistof{listofequations}{equ}{listequationname}
  7. newcommand{myequation}[1]{%
  8. addcontentsline{equ}{equation}{%
  9. protectnumberline{theequation} #1%
  10. }%
  11. }
  12.  
  13.  
  14. begin{document}
  15. frontmatter
  16. bgroup
  17. chapterstyle{article}
  18. tableofcontents
  19. listoffigures
  20. listoftables
  21. listofequations
  22. egroup
  23.  
  24. mainmatter
  25. chapter{A chapter}
  26. section{A section}
  27. begin{figure}[htbp]
  28. caption{some figure caption}
  29. end{figure}
  30. begin{table}[htbp]
  31. caption{some table caption}
  32. end{table}
  33. begin{gather}
  34. y = mx + b label{eqn:linear}
  35. end{gather}myequation{Linear Equation}
  36. end{document}
  37.  
  38. contentsline {table}{numberline {B.5}{ignorespaces Al SpeciesDiffision Coefficients}}{110}{table.caption.69}
  39.  
  40. contentsline {equation}{numberline {1.1}{ignorespaces Expression for Critical Cooing Rate, From Heat Capacity and Sample Size}}{10}{equation.1.1.1}
  41.  
  42. contentsline{figure}{...}
  43. contentsline{table}{...}
  44. contentsline{equation}{...}
  45. contentsline{<ANY OTHER CUSTOM LISTING>}{...}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement