Skip to content

Commit

Permalink
minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
ToAmano committed Dec 17, 2023
1 parent 90b32a2 commit 40539c9
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 0 deletions.
45 changes: 45 additions & 0 deletions docs/_posts/2023/2023-11-15-table-csv-latex.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
---
# Feel free to add content and custom Front Matter to this file.
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
title: latexで外部ファイルから表を作成する方法
layout: single
date: 2023-11-16 21:00:00 +0900
categories:
- code
tags:
- bash
- emacs
description:
---

latexで外部ファイルから表を作成する方法を紹介する.グラフの場合,tikzやpgfplotでは外部ファイルからデータを読み込むことが可能だが,表(table)の場合には意外とわからない.

## csvsimple

## 参考文献

[天地有情 [LaTeX] csvsimple -- CSVで表作成 ~初歩の初歩~](https://konoyonohana.blog.fc2.com/blog-entry-79.html)
[Creating a Table caption with csvsimple package using \csvautotabular{} - TeX - LaTeX Stack Exchange](https://tex.stackexchange.com/questions/431063/creating-a-table-caption-with-csvsimple-package-using-csvautotabular)


## condaの場合

condaを利用するには,もしanacondaを利用しているなら`.bash_profile`に記載するように`conda.sh`を読み込む必要がある.通常のshell利用時にはあまり意識しないので注意が必要.

```bash
. ${HOME}/anaconda3/etc/profile.d/conda.sh
conda activate your_env
# テスト
# conda env list
```

## venvの場合

venvの場合は通常のshellと同様の操作で大丈夫.

```bash
VENV_DIR="/path/to/env/"
python -m venv ${VENV_DIR}
source ${VENV_DIR}/bin/activate
```

19 changes: 19 additions & 0 deletions docs/_posts/2023/2023-11-27-aspell_emacs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
# Feel free to add content and custom Front Matter to this file.
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
title: aspell+emacsでTeX文書のスペルチェック
layout: single
date: 2023-11-27 21:00:00 +0900
categories:
- code
tags:
- bash
- emacs
description: aspellによるスペルチェック
---


## 参考

[Ispell: 対話的スペルチェック|GNU EmacsでLaTeX文書を書く話](https://zenn.dev/maswag/books/latex-on-emacs/viewer/ispell)

0 comments on commit 40539c9

Please sign in to comment.