33
Comment:
|
1180
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
= qfq = | = QFQ = |
Line 3: | Line 3: |
<<TableOfContents>> | <<Tree>> <<TableOfContents>> = Links = * Development: https://git.math.uzh.ch/typo3/qfq * Builds: https://w3.math.uzh.ch/qfq = Tipps & Tricks = == wkhtmltopdf == * Tabelle, A4 optimieirt, PO Boxen qfq-Beispiel, wie eine Seite als PDF ausgegeben werden kann (Browser-unabhaengig): {{{ SELECT 'c:hidden-print|d:P.O. Boxes.pdf|U:id=poboxes&--orientation=Landscape&--print-media-type|t:Download List as PDF' AS _pdf }}} Erklaerung der einzelnen Elemente: * c:hidden-print - bootstrap-Klasse, die den Button beim Ausdruck ausblendet * --orientation=Landscape - Default waere --orientation=Portrait (je nach Seite ist Landscape besser) * --print-media-type - der Ausdruck wird mit print media type aufgerufen, d.h. er laesst sich mittels CSS relativ einfach stylen (siehe unten fuer Beispiel) === Beispiel: print media css === {{{ @media print { a[href]:after { content: none; } .uzh-header, .uzh-footer-area>.col-md-3, .uzh-content-area>.col-md-3, .uzh-top-line .search, .uzh-footer-top { display: none; } .uzh-content-area>.col-md-9, .uzh-footer-area>.col-md-9 { width: 100% !important; } } }}} |
QFQ
Links
Development: https://git.math.uzh.ch/typo3/qfq
Builds: https://w3.math.uzh.ch/qfq
Tipps & Tricks
wkhtmltopdf
- Tabelle, A4 optimieirt, PO Boxen
qfq-Beispiel, wie eine Seite als PDF ausgegeben werden kann (Browser-unabhaengig):
SELECT 'c:hidden-print|d:P.O. Boxes.pdf|U:id=poboxes&--orientation=Landscape&--print-media-type|t:Download List as PDF' AS _pdf
Erklaerung der einzelnen Elemente: * c:hidden-print - bootstrap-Klasse, die den Button beim Ausdruck ausblendet * --orientation=Landscape - Default waere --orientation=Portrait (je nach Seite ist Landscape besser) * --print-media-type - der Ausdruck wird mit print media type aufgerufen, d.h. er laesst sich mittels CSS relativ einfach stylen (siehe unten fuer Beispiel)
Beispiel: print media css
@media print { a[href]:after { content: none; } .uzh-header, .uzh-footer-area>.col-md-3, .uzh-content-area>.col-md-3, .uzh-top-line .search, .uzh-footer-top { display: none; } .uzh-content-area>.col-md-9, .uzh-footer-area>.col-md-9 { width: 100% !important; } }