소스 검색

Added pandoc command example

Federico Amedeo Izzo 9 년 전
부모
커밋
7baa695f25
1개의 변경된 파일8개의 추가작업 그리고 1개의 파일을 삭제
  1. 8 1
      README.md

+ 8 - 1
README.md

@@ -4,7 +4,7 @@ Lecture notes taken mainly to avoid sleeping in class
 The idea is the following:
 - take notes in markdown
 - embed mathematical formulas in latex
-- use pandoc to compile in pdf the document
+- use pandoc to compile the document to pdf format
 
 ### Status
 Subject|completed to|last lesson
@@ -13,3 +13,10 @@ Artificial Intelligence|lesson 4|lesson 4
 Data Bases 2|lesson 3|lesson 3
 Formal Languages and Compilers| lesson 3 | lesson 5
 Software Engineering 2 | missing content| lesson 4
+
+### Compiling to pdf
+example pandoc command
+```
+pandoc --from=markdown_github+pipe_tables+tex_math_dollars -o AI_final.pdf lesson_01.md 
+lesson_02.md lesson_03.md lesson_04.md
+```