Make posters from Markdown files.
Project description
Mkposters
Create posters using Markdown. Supports icons, admonitions, and LaTeX mathematics.
At the moment it is restricted to the specific layout of two-columns-with-banner-at-the-top, as that's what I tend to use. (Pull requests are welcome if you want to make this tool more general.) The poster can be either portrait or landscape.
The library operates by parsing your Markdown into HTML, styling it with CSS, and then opening a webpage that you can export to PDF.
Example
The "source code" for this example is here.
Assumptions
Assumes you have:
- Linux (WSL is fine)
- Firefox
- Python
Compatibility with other operating systems is probably possible by switching out the version of Dart Sass being used.
Compatibility with other browsers is unlikely.
You'll need to be relatively familiar with HTML and (S)CSS to make best use of Mkposters.
Installation
pip install mkposters
Usage instructions
- Create the appropriate directory structure
foo/
poster.md
...any other assets e.g. images...
- Lay out your poster
poster.md
should be formatted in three sections, with a literal "--split--
" between each section.
...anything you want appearing in the banner at the top...
--split--
...whatever you want in the left column...
--split--
...whatever you want in the right column...
- Build poster
Run from the directory containing foo
:
bash> python -m mkposters foo
- View poster
Now open Firefox (not Chrome etc.) and navigate to localhost:8000/poster.html
.
What you see will be based on the size of your current browser window and may differ from the PDF version. So next hit Control-P
and select "Save to PDF". What you see in the print preview is what you'll actually end up with!
Make all your edits until you're happy with the result. Now let's save the result to PDF.
- Save to PDF
Saving to PDF can be quite finickity, and in general depends on choice of browser etc. (For what it's worth the following is tested using Firefox on Windows 10 with mkposters
running on Ubuntu 20.04 on WSL2.)
In the print dialog window we opened above:
- Destination: "Save to PDF". Do not use "Microsoft Print to PDF".
- Orientation: (portrait or landscape, as desired)
- Pages: Custom: 1
- Paper size: (whatever is desired; current styling works best on paper roughly A4 sized)
- Margins: None
- Options: uncheck "Print headers and footers"
Once again, make sure you're using Firefox. Using other browsers (e.g. Chrome) or other PDF exporters (e.g. WeasyPrint) can introduce a variety of issues, such as saving text as images (which are unselectable in the PDF, and appear slightly pixelated), missing parts of the styling, or having faded colours (looking at you, Chrome).
Functionality
Mkposters comes with a few extra pieces of functionality built in.
Icons
Recalling that Markdown can embed HTML, then icons can be embedded via e.g.
<img style="height: 20pt; width: 20pt" src="icons/fontawesome/brands/github.svg">
where the list of available icons is here.
Mathematics
You can use LaTeX-formatted mathematics. This is done via
\\(inline math\\)
\\[display math\\]
Note the double backslash.
Admonitions
Admonitions can be added using the syntax
!!! admonition_type "Your title here"
Your text here
where admonition_type
is any of these types, e.g. info
, tip
, etc.
HTML
The Markdown format allows you use arbitrary HTML inside of it.
- The banner section often contains information (titles, authors, logos, URLs etc.) laid out in complicated ways. Directly writing HTML with embedded
style
attributes is simplest here. See the start of this example. - HTML can be (ab)used to modify spacing like so. (Analogous to those little
\vspace
s you definitely never use in LaTeX documents.) In this example we move the content up by 10 points.
<div style="margin-top: -10pt;">
...your content here...
</div>
Future plans?
It'd be nice to support:
- Custom per-poster SCSS;
- Other poster layouts;
- Handling other paper sizes;
- Optionally automatically generating the PDF. (Practically speaking probably by automating the Firefox interaction through Selenium.)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file mkposters-0.0.1.tar.gz
.
File metadata
- Download URL: mkposters-0.0.1.tar.gz
- Upload date:
- Size: 5.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d076bb7ba30f90661a8e9cfa04d320e19ec033609b1c2022edc690435edac6cb |
|
MD5 | 2d66cd5e258f5d1c886dc8c3f93bcff5 |
|
BLAKE2b-256 | 564cd2392170ecf0119f9637d623f73ed4dfb26eaa85f93aff7f1dfba3517022 |
File details
Details for the file mkposters-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: mkposters-0.0.1-py3-none-any.whl
- Upload date:
- Size: 8.2 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 59b5bcbddc3b5627fe7afaa838114196c676e218381eff1c91c6222244dbf704 |
|
MD5 | 5ce3268ff73e88b3da03add4ee1007eb |
|
BLAKE2b-256 | 49ddef99852654fd60048045e7fde8867d225ffdafbb74edb816ce016d06e2ac |