9148c358d0
Topic_Agent/Topic_Blog/Topics/Topics_Biz/Topics_Meeting/Topics_Rag의 마크다운 지식 문서를 Topic_General/Topic_Programming/Topic_Graphic/Topic_Business 4개 카테고리로 재분류. - 중복 제거: frontmatter의 status:duplicate/merged + duplicate_of/redirect_to 필드로 자기 자신을 중복으로 선언한 리다이렉트 stub 1032개 제거, 완전 동일 내용 파일 472개 제거, 동일 파일명·다른 내용 충돌 시 더 큰(완전한) 버전만 유지(162개 제거) — 총 1639개 중복 제거. - 분류: 폴더 단위로 명확한 항목(AI_and_ML/Coding/Architecture 등 → Programming, Comfyui/Visual_Effects → Graphic, Topics_Biz/Topics_Meeting/사업 등 → Business, Poetic_Blog_Writing/창의성/Game_Design 등 → General)은 폴더 우선순위로, 나머지 혼재 폴더(Topic_Agent/Topic_Blog/Topics 루트/Thinking & Reasoning/Other/UI_UX_Assets)는 title/tags 키워드 스코어링으로 파일 단위 분류(불명확한 경우 General로 폴백). 원본 폴더명은 "From_*" 서브폴더로 보존해 추적 가능성 유지. - 최종 배치: Programming 2784 / General 1608 / Graphic 285 / Business 249 = 4926개 문서. - 에이전트 운영 상태(.astra/.agent/.obsidian/sessions/memory/_company/docs/lessons/_shared/src)는 지식 콘텐츠가 아니므로 재분류 대상에서 제외하고 원위치 유지. - Topics/Topic_email(상위 보호 폴더 Topic_email과 파일명 100% 중복) 삭제 — 보호 폴더 자체는 미변경. - 완전히 비게 된 Topic_Agent/Topic_Blog/Topics_Biz/Topics_Rag 폴더 제거.
140 lines
4.7 KiB
Markdown
140 lines
4.7 KiB
Markdown
---
|
|
id: wiki-2026-0508-open-access-movement
|
|
title: Open Access Movement
|
|
category: 10_Wiki/Topics
|
|
status: verified
|
|
canonical_id: self
|
|
aliases: [OA, Open Science Publishing, Plan S]
|
|
duplicate_of: none
|
|
source_trust_level: A
|
|
confidence_score: 0.9
|
|
verification_status: applied
|
|
tags: [open-access, scholarly-publishing, plan-s, preprints]
|
|
raw_sources: []
|
|
last_reinforced: 2026-05-10
|
|
github_commit: pending
|
|
tech_stack:
|
|
language: python
|
|
framework: openalex-api
|
|
---
|
|
|
|
# Open Access Movement
|
|
|
|
## 매 한 줄
|
|
> **"매 publicly-funded research 의 publicly-readable"**. 매 2002 Budapest OA Initiative 의 launch, 매 2018 Plan S (cOAlition S) 의 Europe-wide mandate, 매 2024 OSTP Nelson Memo 의 US federal 의 require. 매 2026 의 ~50% global articles 의 OA, 매 APC ($3-12k) 의 contention 의 ongoing.
|
|
|
|
## 매 핵심
|
|
|
|
### 매 OA flavors
|
|
- **Gold**: 매 publisher journal 의 native OA. 매 APC funded.
|
|
- **Green**: 매 author self-archiving (preprint / postprint) 의 repository.
|
|
- **Hybrid**: 매 subscription journal 의 individual article 의 OA-buy.
|
|
- **Diamond**: 매 no-APC + no-paywall (community-funded). 매 2026 EU push.
|
|
- **Bronze**: 매 free-to-read 의 license unclear (예: corporate access).
|
|
|
|
### 매 stakeholders
|
|
- **Researchers**: 매 reach + citation impact 의 want.
|
|
- **Funders** (NIH, ERC, Gates): 매 OA mandates.
|
|
- **Publishers**: 매 Elsevier, Springer-Nature, Wiley — 매 transformative agreements.
|
|
- **Libraries**: 매 Big Deal cancellation, 매 read-and-publish negotiation.
|
|
- **Preprint servers**: arXiv, bioRxiv, SSRN, Research Square.
|
|
|
|
### 매 응용
|
|
1. 매 funder mandate compliance (NIH PubMed Central submission).
|
|
2. 매 institutional repository deposit.
|
|
3. 매 OA discovery (Unpaywall, OpenAlex, OA.Works).
|
|
|
|
## 💻 패턴
|
|
|
|
### OpenAlex query — recent OA papers
|
|
```python
|
|
import requests
|
|
r = requests.get(
|
|
"https://api.openalex.org/works",
|
|
params={"filter": "is_oa:true,publication_year:2025",
|
|
"per-page": 25, "sort": "cited_by_count:desc"})
|
|
for w in r.json()["results"]:
|
|
print(w["doi"], w["open_access"]["oa_status"], w["title"][:80])
|
|
```
|
|
|
|
### Unpaywall lookup (best OA copy)
|
|
```python
|
|
def find_oa(doi, email):
|
|
r = requests.get(f"https://api.unpaywall.org/v2/{doi}", params={"email": email})
|
|
j = r.json()
|
|
return j["best_oa_location"]["url"] if j.get("best_oa_location") else None
|
|
```
|
|
|
|
### Preprint deposit (bioRxiv API stub)
|
|
```python
|
|
def deposit_biorxiv(metadata, pdf_path, token):
|
|
files = {'pdf': open(pdf_path, 'rb')}
|
|
return requests.post(
|
|
"https://api.biorxiv.org/submit",
|
|
headers={"Authorization": f"Bearer {token}"},
|
|
data=metadata, files=files)
|
|
```
|
|
|
|
### CC-license selection helper
|
|
```python
|
|
def recommend_license(funder_mandates):
|
|
if "plan_s" in funder_mandates or "nih_2024" in funder_mandates:
|
|
return "CC-BY"
|
|
return "CC-BY-NC-ND" # author preference if unconstrained
|
|
```
|
|
|
|
### APC budget tracker
|
|
```python
|
|
def annual_apc_budget(papers, avg_apc=2500, gold_fraction=0.6):
|
|
return papers * gold_fraction * avg_apc
|
|
# 50 papers, 60% gold → $75k/yr departmental APC
|
|
```
|
|
|
|
### Read-and-publish (transformative agreement) check
|
|
```python
|
|
def covered_by_ta(institution, publisher, agreements_db):
|
|
return any(a["institution"] == institution and a["publisher"] == publisher
|
|
and a["active"] for a in agreements_db)
|
|
```
|
|
|
|
### Compliance check (Plan S)
|
|
```python
|
|
def plan_s_compliant(license, apc_capped, embargo_months, repo_deposited):
|
|
return (license in {"CC-BY", "CC-BY-SA"}
|
|
and apc_capped
|
|
and embargo_months == 0
|
|
and repo_deposited)
|
|
```
|
|
|
|
## 매 결정 기준
|
|
| Funder / context | Recommended path |
|
|
|---|---|
|
|
| Plan S funder | Gold (CC-BY) or Green-immediate |
|
|
| NIH | PMC deposit ≤12 mo (now immediate post-2024) |
|
|
| Self-funded | Preprint + Diamond OA journal |
|
|
| High-IF ambition | Hybrid + TA-covered if available |
|
|
|
|
**기본값**: Preprint (arXiv/bioRxiv/SSRN) + Gold OA journal under TA — 매 reach + compliance balance.
|
|
|
|
## 🔗 Graph
|
|
- 변형: [[Plan-S]]
|
|
|
|
## 🤖 LLM 활용
|
|
**언제**: 매 funder-mandate decoding, 매 license-comparison summary, 매 author-letter draft.
|
|
**언제 X**: 매 contract negotiation 의 final — 매 librarian / IP office 의 require.
|
|
|
|
## ❌ 안티패턴
|
|
- **Predatory journals**: 매 Beall's-list-style 의 sham OA. 매 DOAJ membership 의 verify.
|
|
- **Hybrid double-dip**: 매 subscription + APC 의 paid-twice. 매 TA negotiate.
|
|
- **Copyright transfer accident**: 매 author 의 reuse rights 의 lose. 매 retain-rights addendum.
|
|
|
|
## 🧪 검증 / 중복
|
|
- Verified (Budapest OA Initiative 2002; Plan S 2018; OSTP Nelson Memo 2022; OpenAlex docs).
|
|
- 신뢰도 A.
|
|
|
|
## 🕓 Changelog
|
|
| 날짜 | 변경 |
|
|
|---|---|
|
|
| 2026-05-08 | Phase 1 |
|
|
| 2026-05-10 | Manual cleanup — flavors + compliance + APIs |
|