From 4717b9660a2c31364420918b61e53bc0b5e4f21f Mon Sep 17 00:00:00 2001 From: Hasan al Rasyid Date: Sat, 19 Mar 2022 19:13:58 +0900 Subject: [PATCH] clean make file --- Makefile | 1 + manuscript.md | 12 ++++++------ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 97b2acb..ab6edb1 100644 --- a/Makefile +++ b/Makefile @@ -1,2 +1,3 @@ article: + rm -rf _build/auto GHC_PACKAGE_PATH=${HOME}/Documents/kerja/devKit/pubsEngine/.stack-work/install/x86_64-linux-tinfo6/3d751d21e6b97977106d82e2ec3961638329963dd4d98bc4115204782f5d4168/8.10.7/pkgdb:${HOME}/.stack/snapshots/x86_64-linux-tinfo6/3d751d21e6b97977106d82e2ec3961638329963dd4d98bc4115204782f5d4168/8.10.7/pkgdb:${GHC_PACKAGE_PATH} pubsEngine manuscript article diff --git a/manuscript.md b/manuscript.md index 4ce1211..391eb47 100644 --- a/manuscript.md +++ b/manuscript.md @@ -240,9 +240,9 @@ Table creation will be described in another section (Enhancement by pubsEngine). will produce Figure \ref{fig:FigVibStab}. Make sure that you calculated by yourself the appropriate width and height for the image to fit in a column. -Full width image and automatic sized image for single-column will be described at another section (Enhancement by pubsEngine). +Full width image and automatic sized image for single-column will be described at another section (Enhancement by pubsEngine). Please be aware that `size` is considered as a multiplier of the `\linewidth`. -![the caption](Figure/icml_numpapers.eps){#fig:FigVibStab width=3.43in height=2.71in} +![the caption](Figure/icml_numpapers.eps){#fig:FigVibStab size=0.8} ## Lists We can have either ordered or unordered list @@ -383,20 +383,20 @@ include/addition1.md Above paragraph was included from `include/addition1.md`. -## Diagram +## Diagrams We can include a diagram script, following an Embedded domain-specific Language from Haskell package [`diagrams`](https://hackage.haskell.org/package/diagrams). The implementation of following CodeBlock can be seen at Figure \ref{fig:dia1}. -Please be aware that the `width` will be considered as a multiplier from `\textwidth`. +Please be aware that the `size` will be considered as a multiplier from `\linewidth`. ``` -~~~{#fig:dia1 .diagram width=0.8 caption="dia"} +~~~{#fig:dia1 .diagram size=0.8 caption="dia"} let x = circle 10 in x ~~~ ``` -~~~{#fig:dia1 .diagram width=0.8 caption="from Diagrams"} +~~~{#fig:dia1 .diagram size=0.8 caption="from Diagrams"} let t = circle 100 in t ~~~