Information | |
---|---|
Title | Fatiando a Terra: a journey into open-source software for Geophysics |
Author | Santiago Soler |
Editor | Constanza Rodriguez Piceda |
Read the blogpost | https://blogs.egu.eu/divisions/gd/2023/07/19/fatiando-a-terra |
The text of the blogpost can be found in blogpost.md
, a Markdown file that
can be converted to a PDF, docx or even into a website with pandoc.
So first you will have to install pandoc.
We will also use make
to build the blogpost into different formats. make
is
available in most GNU/Linux distributions, and it can be installed in Windows
through conda
:
conda install -c conda-forge make
Then clone this repository with:
git clone https://github.com/fatiando/2023-egu-gd-blogpost
To build a PDF version of the blogpost, pandoc will use LaTeX, so be sure to have a LaTeX distribution installed in your system.
To build the PDF file we just need to run:
make pdf
A _build/blogpost.pdf
file will be automatically created.
To build a .docx
version of the blogpost we just need to run:
make docx
A _build/blogpost.docx
file will be automatically created.
To build an HTML version of the blogpost we just need to run:
make html
A _build/index.html
file will be automatically created.
Alternatively, if you install livereload
, you can run:
make serve
It will automatically build the _build/index.html
and serve it so you can
view it in your web browser.
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.