-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
|