Advertisement
Guest User

Untitled

a guest
Jun 28th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. > myBook.tex
  2. > myBook_structure.tex
  3.  
  4. > part1_Introduction
  5. |
  6. |--- Introduction_to_FreeRTOS
  7. | |-- someFile.tex
  8. | '-- someFile.tex
  9. |
  10. '--- How_to_use_FreeRTOS
  11. |-- someFile.tex
  12. '-- someFile.tex
  13.  
  14. > part2_FreeRTOS_examples
  15. |
  16. |--- First_example
  17. | |-- someFile.tex
  18. | '-- someFile.tex
  19. |
  20. '--- Second_Example
  21. |-- someFile.tex
  22. '-- someFile.tex
  23. ...
  24.  
  25. %% myBook_structure.tex
  26. %% --------------------
  27. defpart1ch1{./part1_Introduction/Introduction_to_FreeRTOS}
  28. defpart1ch2{./part1_Introduction/How_to_use_FreeRTOS}
  29. defpart2ch1{./part2_FreeRTOS_examples/First_example}
  30. defpart2ch2{./part2_FreeRTOS_examples/Second_example}
  31. ...
  32.  
  33. %% myBook.tex
  34. %% -----------
  35.  
  36. input{./myBook_structure}
  37. ..
  38. begin{document}
  39. ..
  40. %% Include a file from chapter 1 within part 1:
  41. include{part1ch1/someFile}
  42. %% Include a file from chapter 2 within part 1:
  43. include{part1ch2/someFile}
  44. ..
  45. end{document}
  46.  
  47. %% myBook_structure.tex
  48. %% --------------------
  49. defpart1ch1{./part1_Introduction/FreeRTOS_intro} %% <- this line changed
  50. defpart1ch2{./part1_Introduction/How_to_use_FreeRTOS}
  51. ... all other lines remain the same
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement