Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set unicode supporting fonts in tex template #264

Merged
merged 7 commits into from
Aug 5, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion pdf/app/latex/ATBD.tex
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
\usepackage{url}
\usepackage{booktabs}
\usepackage{graphicx}
\usepackage{unicode-math}
\setmainfont{Latin Modern Math}
\setmathfont{Latin Modern Math}
\hypersetup{
colorlinks=true, %set true if you want colored links
linktoc=all, %set to all if you want both sections and subsections linked
Expand Down Expand Up @@ -90,4 +93,4 @@ \section{Contacts}
\bibliography{main}

\end{document}


6 changes: 3 additions & 3 deletions startserver.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ docker-compose up --detach
# all the services are up, now create & populate the s3 buckets and the pg database

# localstack: create s3 bucket for figures
aws --endpoint-url=${S3} s3 mb s3://"$FIGURES_S3_BUCKET" --no-sign-request
aws --endpoint-url=${S3} s3api put-bucket-acl --bucket "$FIGURES_S3_BUCKET" --acl public-read-write --no-sign-request
aws --endpoint-url=${S3} s3 mb s3://"$FIGURES_S3_BUCKET" --no-sign-request
jvntf marked this conversation as resolved.
Show resolved Hide resolved
aws --endpoint-url=${S3} s3api put-bucket-acl --bucket "$FIGURES_S3_BUCKET" --acl public-read-write --no-sign-request &>0
aws --endpoint-url=${S3} s3 cp ./figures/fullmoon.jpg s3://"$FIGURES_S3_BUCKET" --no-sign-request

# localstack: create s3 bucket for pdfs
aws --endpoint-url=${S3} s3 mb s3://"$PDFS_S3_BUCKET" --no-sign-request
aws --endpoint-url=${S3} s3api put-bucket-acl --bucket "$PDFS_S3_BUCKET" --acl public-read-write --no-sign-request
aws --endpoint-url=${S3} s3api put-bucket-acl --bucket "$PDFS_S3_BUCKET" --acl public-read-write --no-sign-request &>0

# create db with squitch and load mock data
pushd db
Expand Down