Tuesday, March 15, 2011

How to insert a space in Mathtype equations

It took me a while to figure out how to insert a space in Mathtype equations. This is especially useful when you write an equation with multiplication of a few items, but you don't want to use a dot or a multiplication sign. Here is the trick:

Ctrl + Shift + space

Done!

my-alpine and docker-compose.yml

 ``` version: '1' services:     man:       build: .       image: my-alpine:latest   ```  Dockerfile: ``` FROM alpine:latest ENV PYTH...