namespace cpp {}

C++ lernen, kennen, anwenden

Benutzer-Werkzeuge

Webseiten-Werkzeuge


wiki:quicksyntax

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.


Vorhergehende Überarbeitung
wiki:quicksyntax [2023-05-18 13:51] (aktuell) – [Math] rrichter
Zeile 1: Zeile 1:
 +====== My DokuWiki Syntax Cheatsheet ======
 +See [[doku>|DokuWiki]] [[doku>wiki:syntax]] for long explanation.
 +<WRAP col2>
 +===== Headlines =====
 +  ====== Level 1 ======
 +  ===== Level 2 =====
 +  ==== Level 3 ====
 +  === Level 4 ===
 +  == Level 5 ==
 +===== Multi-column text =====
 +  <WRAP col2> // col3 ... col5
 +  text
 +  
 +  more text (on modern browsers)
 +  </WRAP>
 +(requires [[https://www.dokuwiki.org/plugin:wrap|Wrap plugin]])
 +</WRAP>
 +
 +===== Columns =====
 +<WRAP col2>
 + [[https://github.com/tvaneerd/cpp17_in_TTs|C++ "Tony tables"]]:
 + <WRAP group>
 + <WRAP half column>
 +C++98:
 +  before
 + </WRAP>   
 + <WRAP half column>
 +C++17:
 +  after
 + </WRAP>  
 + </WRAP>
 +Two or more indepedent columns, width: ''half third quarters twothirds''
 +  <WRAP group>
 +   <WRAP half column>
 +   C++98:
 +     before
 +   </WRAP>
 +   <WRAP half column>
 +   C++17:
 +     after
 +   </WRAP>
 +  </WRAP>
 +</WRAP>
 +
 +===== Links and images =====
 +<WRAP col2>
 +www.google.com                    [[http://www.google.com/|Google]] \\
 +[[quicksyntax|internal]]          [[#Formatting|with link]] \\   
 +[[wiki:quicksyntax|in namespace]] [[this>../404.htm|on homepage]] \\
 +Wikipedia [[wp>Newton|engl.]]     [[wpde>Newton|dt.]] \\
 +[[doku>Interwiki]]                [[google>Newton|Google Search]] \\
 +[[cppref>|C++ reference]] \\        
 +Image link: {{wiki:dokuwiki-128.png?16|image in media folder}}
 +
 +  www.google.com                    [[http://www.google.com/|Google]] \\
 +  [[quicksyntax|internal]]          [[#Formatting|with link]] \\   
 +  [[wiki:quicksyntax|in namespace]] [[this>../404.htm|on homepage]] \\
 +  Wikipedia [[wp>Newton|engl.]]     [[wpde>Newton|dt.]] \\
 +  [[doku>Interwiki]]                [[google>Newton|Google Search]] \\
 +  [[cppref>|C++ reference]] \\        
 +  Image link: {{wiki:dokuwiki-128.png?16|image in media folder}}
 +</WRAP>
 +
 +===== Tables and lists =====
 +<WRAP col2>
 +^ Heading 1    ^ Heading 2 ^ Heading 3 ^
 +| Row 1 Col 1  | Row 1 Col 2 | Row 1 Col 3\\ rowspan by 3 colons |
 +| colspan by double pipe || :::       |
 +^left heading  |  center  |     right |
 +
 +  ^ Heading 1   ^ Heading 2 ^ Heading 3 ^
 +  | Row 1 Col 1  | Row 1 Col 2 | Row 1 Col 3\\ rowspan by 3 colons |
 +  | colspan by double pipe || :::       |
 +  ^left heading  |  center  |     right |
 +</WRAP>
 +
 +<WRAP col2>
 +  * lists without  
 +    * or
 + 
 +  - with
 +    - numbers / ordering
 +<code>
 +  * lists without  
 +    * or
 +
 +  - with
 +    - numbers / ordering
 +</code>
 +</WRAP>
 +<WRAP pagebreak />
 +===== Formatting =====
 +<WRAP col2>
 +//italic// **bold** __underlined__  <del>deleted</del> \\
 +''monospaced'' <sub>subscript</sub> <sup>superscript</sup>\\
 +That is => %%not <=> parsed%% <= text\\
 +Special characters: <-   -> <= => <-> <=> << >> -- --- (c) (r) (tm)  \\
 +Smileys: :-)   :-(  :?:  :!:  FIXME  DELETEME\\
 +Anführungszeichen „deutsch“ “english”
 +
 +  //italic// **bold** __underlined__  <del>deleted</del>
 +  ''monospaced'' <sub>subscript</sub> <sup>superscript</sup>  
 +  That is => %%not <=> parsed%% <= text  
 +  <- -> <= => <-> <=> << >> -- --- (c) (r) (tm)  
 +  :-)   :-(  :?:  :!:  FIXME  DELETEME
 +  „deutsch“ “english”
 +</WRAP>
 +
 +<WRAP col2>
 +-----
 +ruler and new line\\ without paragraph 
 +((This is a footnote: new line also in table cell.))
 +<code>
 +-----
 +ruler and new line\\ without paragraph 
 +((This is a footnote: new line also in table cell.))
 +</code>
 +</WRAP>
 +
 +<WRAP col2>
 +> quote
 +>> requote
 +
 +  > quote
 +  >> requote
 +</WRAP>
 +
 +
 +<WRAP col2>
 +<file>
 +text in file
 +</file>
 +<code cpp empty.cpp>
 +int main() {}
 +</code>
 +  <file>text in file</file>
 +
 +  <code cpp empty.cpp>
 +  int main() {}
 +  </code>
 +</WRAP>
 +
 +
 +===== Math =====
 +<WRAP col2>
 +inline $ a^2 $ or displayed (right-click to see LaTeX code)  \[ \int_{-\infty}^\infty x^3 \,\mathrm dx = 0\]
 +
 +(requires [[https://www.dokuwiki.org/plugin:mathjax|MathJAX plugin]])
 +
 +  $ a^2 $ or displayed (right-click to see LaTeX code)
 +  \[ 
 +    \int_{-\infty}^\infty x^3 \,\mathrm dx = 0 
 +  \]
 +</WRAP>
 +
  

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki