Table of Contents

Mathematica

Functional aspects

Equivalent ways to apply function f to every element of the list {a,b,c}

Map[f, {a, b, c}]
f[#]&/@{a, b, c}

Plotting Options

Fonts

LabelStyle -> {FontFamily -> "FONT_NAME", SIZE,  COLOR}
LabelStyle -> {FontFamily -> "Roboto Condensed Light", 18, GrayLevel[0]}

Title/Axes

Frame ->True,
FrameLabel -> {{"Left", "Right"}, {"Down", "Up"}}

Fun Heart plot

ParametricPlot[{16 Sin[t]^3, 
 13 Cos[t] - 5 Cos[2 t] - 2 Cos[3 t] - Cos[4 t]}, {t, 0, 2 \[Pi]}, 
PlotLabel -> ImportString["SGFwcHkgVmFsZW50aW5lcyBicm8h", "Base64"], 
BaseStyle -> {FontFamily -> "Roboto Condensed", FontSize -> 16}, 
LabelStyle -> Red, Axes -> None]