Update ToDo.md
Browse files
ToDo.md
CHANGED
|
@@ -10,6 +10,33 @@ https://docs.streamlit.io/library/advanced-features/app-menu
|
|
| 10 |
|
| 11 |
https://docs.streamlit.io/library/api-reference/widgets/st.file_uploader
|
| 12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
- Word to PDF:
|
| 14 |
|
| 15 |
https://www.ilovepdf.com/word_to_pdf
|
|
|
|
| 10 |
|
| 11 |
https://docs.streamlit.io/library/api-reference/widgets/st.file_uploader
|
| 12 |
|
| 13 |
+
|
| 14 |
+
- https://www.datacamp.com/tutorial/streamlit:
|
| 15 |
+
|
| 16 |
+
st.title(): This function allows you to add the title of the app.
|
| 17 |
+
|
| 18 |
+
st.header(): This function is used to set header of a section.
|
| 19 |
+
|
| 20 |
+
st.markdown(): This function is used to set a markdown of a section.
|
| 21 |
+
|
| 22 |
+
st.subheader(): This function is used to set sub-header of a section.
|
| 23 |
+
|
| 24 |
+
st.caption(): This function is used to write caption.
|
| 25 |
+
|
| 26 |
+
st.code(): This function is used to set a code.
|
| 27 |
+
|
| 28 |
+
st.latex(): This function is used to display mathematical expressions formatted as LaTeX.
|
| 29 |
+
|
| 30 |
+
st.title ("this is the app title")
|
| 31 |
+
st.header("this is the header ")
|
| 32 |
+
st.markdown("this is the markdown")
|
| 33 |
+
st.subheader("this is the subheader")
|
| 34 |
+
st.caption("this is the caption")
|
| 35 |
+
st.code("x=2021")
|
| 36 |
+
st.latex(r''' a+a r^1+a r^2+a r^3 ''')
|
| 37 |
+
|
| 38 |
+
|
| 39 |
+
|
| 40 |
- Word to PDF:
|
| 41 |
|
| 42 |
https://www.ilovepdf.com/word_to_pdf
|