Random Thoughts
- bold
- italicks
Expand / Collapse
This is a detail folded. A line space needed to render table or math. How long can it run? As long as the aragraph is not broken…
\[\alpha + t = 5\]R | T —— No, as long as the details tag is not broken!!!
\(\alpha + t = 5\)
R | T | S ——
###Text color
Text with background color / highlight
Text foreground color
Text with colored outline / Text with colored outline
\[U = \langle H(q, p) \rangle = \int H(q, p) \rho(q, p) d^{\otimes N}q d^{\otimes N}p\]what is DataBase
Compare the local database markdown based best free apps.
| Feature | Markor | Obsidian | Zettle |
|---|---|---|---|
| Synchronization | No inbuilt | Subscription only | Has it: Dropbox/gdrive |
| Math | enable katex in view mode | Â | Single dollar inline mode has to enabled |
| Math display breaks | Flexible | no space close to $ | bracket inside $ |
| Image | slash infront of filename don’t work |  | introduces a slash infront of filename |
| Export | Does all! | Subscription only | Does all! |
| Viewer look | better | best | good |
| Editor look | normal text | best, math edit with result | slight markdown |
| css scripts | infile scripts work perfectly in display | Â | Dont work with display, but works right in exported output |
| Other | It has a clipping shortcut for web clipping. | Â | Â |
Synchronization:
Zettel repository set to Documents/markor folder. Synchronization set to dropbox/zettle folder. Complete. Now opening dropbox and editing the file in dropbox to add the markdown supported content below to test on Zettle. \(\frac{\sqrt{2}}{2}\) is it showing the dropbox edit?
Yes, in zetel. Wonderful. Just exit and open zetel to see the synchronised version. that’s great!
Now in markor (the local folder already set to the Documents/markor folder), the changes In dropbox as well as Zettle are reflected here, that’s fantastic! So Zettle repository set to the “markor” folder on mobile actually synchronises well with the Dropbox. So, after properly closing one application, another application can be opened to edit the file for a permanent change. However, zettle settings synchronises with Dropbox. Marker and Obsidian are local only.
Zetel has no math inline display, css not recognised. But does most of the tasks, most important is inbuilt synchronization with dropbox! The same markor folder is set as repository in zetel, and in turn it synchronises with dropbox. No need to use drivesync that has a risk of accessing the whole googledrive. In this way Obsidian can be used, but it can’t export to pdf in mobile!
\(x'=\dfrac{x+vt}{\sqrt{1-\dfrac{v^{2}}{c^{2}}}}\) This is a equation copied from nebo notebook math equation.
Exporting
- Markor pdf good as displayed. Pdf export: Infile css scripts work properly, math equations display right. html: css to be seen. Html android system katex enabled html not display equations.
- Obsidian has template based export but not free!
- Zettle shares all formats. Unable to save directly to local folder. Pdf has to be system printed or opened with pdf viewer. Html has two mode, both temporary files has to be viewed by some browser. Or open with markor or colornote to see, edit, copy source.
#indude <stdio.h>
#include <string.h>
union employee {
int id;
char name[50];
}el; //declaring el variable for union
int main()
{
//store first employee information el.id=101;
strcpy(el.name, "Trilochan Tarai");
//copying string into char array
//printing first employee information printf("employee 1 id : %d\n", el.id); printf("employee 1 name : %s\n", el.name);
return 0;
}