nature-figure-guide
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseNature Figure Preparation Guide
《Nature》期刊配图制作指南
Overview
概述
This guide provides the complete specifications for preparing figures for submission to Nature and Nature Research journals. Following these guidelines ensures smooth processing and high-quality reproduction of your figures in both print and online formats.
Official reference: https://www.nature.com/nature/for-authors/formatting-guide
本指南提供了为《Nature》及Nature Research系列期刊投稿准备配图的完整规范。遵循这些准则可确保您的配图在印刷和在线格式中顺利处理并高质量呈现。
Resolution Requirements
分辨率要求
| Image Type | Minimum Resolution | Notes |
|---|---|---|
| All figures | 300 DPI | At maximum print size |
| Optimal quality | 450 DPI+ | Recommended for best online display |
| Online submission | 300 PPI max | To keep file sizes manageable |
CRITICAL: Do NOT artificially increase resolution (upsampling) in image editing software. This does not improve quality and may introduce artifacts.
| 图片类型 | 最低分辨率 | 说明 |
|---|---|---|
| 所有配图 | 300 DPI | 以最大印刷尺寸为准 |
| 最优画质 | 450 DPI+ | 推荐用于最佳在线显示效果 |
| 在线投稿 | 最高300 PPI | 控制文件大小在合理范围 |
重要提示:请勿在图像编辑软件中人为提高分辨率(上采样)。这无法提升画质,还可能引入伪影。
Verify Resolution with Python
使用Python验证分辨率
python
from PIL import Image
def check_nature_resolution(image_path):
"""Check if image meets Nature's resolution requirements."""
img = Image.open(image_path)
width_px, height_px = img.size
dpi = img.info.get('dpi', (72, 72))
print(f"Image: {image_path}")
print(f"Dimensions: {width_px} x {height_px} px")
print(f"DPI: {dpi[0]} x {dpi[1]}")
if dpi[0] < 300 or dpi[1] < 300:
print("WARNING: Resolution below 300 DPI minimum")
print(f" Need at least 300 DPI for Nature submission")
elif dpi[0] >= 450:
print("PASS: Meets optimal resolution (450+ DPI)")
else:
print("PASS: Meets minimum resolution (300+ DPI)")
# Check file size
import os
size_mb = os.path.getsize(image_path) / (1024 * 1024)
print(f"File size: {size_mb:.1f} MB")
if size_mb > 10:
print("WARNING: File exceeds 10 MB limit")
return dpi[0] >= 300 and dpi[1] >= 300python
from PIL import Image
def check_nature_resolution(image_path):
"""检查图片是否符合《Nature》的分辨率要求。"""
img = Image.open(image_path)
width_px, height_px = img.size
dpi = img.info.get('dpi', (72, 72))
print(f"图片: {image_path}")
print(f"尺寸: {width_px} x {height_px} 像素")
print(f"DPI: {dpi[0]} x {dpi[1]}")
if dpi[0] < 300 or dpi[1] < 300:
print("警告:分辨率低于最低要求的300 DPI")
print(f" 《Nature》投稿需至少300 DPI")
elif dpi[0] >= 450:
print("通过:符合最优分辨率要求(450+ DPI)")
else:
print("通过:符合最低分辨率要求(300+ DPI)")
# 检查文件大小
import os
size_mb = os.path.getsize(image_path) / (1024 * 1024)
print(f"文件大小: {size_mb:.1f} MB")
if size_mb > 10:
print("警告:文件大小超过10 MB限制")
return dpi[0] >= 300 and dpi[1] >= 300File Format
文件格式
Preferred Formats by Figure Type
按配图类型推荐格式
| Figure Type | Preferred Format | Alternative |
|---|---|---|
| Line drawings, graphs, schematics | Adobe Illustrator (AI), EPS, PDF | Vector formats preserve editability |
| Photographs, micrographs | Photoshop (PSD), TIFF | High-quality raster |
| General purpose | JPEG (300-600 DPI) | Acceptable for most figures |
| Extended Data figures | JPEG (preferred), TIFF, EPS |
| 配图类型 | 推荐格式 | 替代格式 |
|---|---|---|
| 线条图、图表、示意图 | Adobe Illustrator (AI)、EPS、PDF | 矢量格式可保留可编辑性 |
| 照片、显微图像 | Photoshop (PSD)、TIFF | 高质量栅格格式 |
| 通用类型 | JPEG(300-600 DPI) | 适用于大多数配图 |
| 扩展数据配图 | JPEG(优先)、TIFF、EPS |
Also Accepted
其他可接受格式
- CorelDraw (up to version 8)
- Microsoft Word, Excel, PowerPoint
- CorelDraw(最高版本8)
- Microsoft Word、Excel、PowerPoint
File Size
文件大小
- Maximum: 10 MB per figure file
- Most files should be well under this limit
- 上限:单张配图文件最大10 MB
- 大多数文件应远低于此限制
Important Rules
重要规则
- Multi-panel figures must be assembled into a single image file
- Individual panels must NOT be uploaded separately
- Each complete figure must be a separate file upload
- 多面板配图必须合并为单个图像文件
- 请勿单独上传各个面板
- 每张完整配图需作为独立文件上传
Figure Size and Dimensions
配图尺寸与规格
Nature does not specify fixed column widths for initial submission, but figures should be:
- Composed as a single image for multi-panel figures
- Sized appropriately for the intended display
- Not uploaded as individual panels
《Nature》未对初始投稿指定固定栏宽,但配图需满足:
- 多面板配图需合并为单个图像
- 根据预期显示场景调整尺寸
- 请勿单独上传各个面板
Python: Set Figure Dimensions
使用Python设置配图尺寸
python
import matplotlib.pyplot as plt
def create_nature_figure(n_panels=1, fig_type='single_column'):
"""Create a Matplotlib figure sized for Nature."""
if fig_type == 'single_column':
fig_width = 3.5 # inches (approx 89 mm)
elif fig_type == 'double_column':
fig_width = 7.0 # inches (approx 178 mm)
else:
fig_width = 5.0 # 1.5 column
fig_height = fig_width * 0.75 # default aspect ratio
fig, axes = plt.subplots(1, n_panels, figsize=(fig_width, fig_height))
fig.set_dpi(450)
return fig, axespython
import matplotlib.pyplot as plt
def create_nature_figure(n_panels=1, fig_type='single_column'):
"""创建符合《Nature》规格的Matplotlib配图。"""
if fig_type == 'single_column':
fig_width = 3.5 # 英寸(约89毫米)
elif fig_type == 'double_column':
fig_width = 7.0 # 英寸(约178毫米)
else:
fig_width = 5.0 # 1.5栏宽
fig_height = fig_width * 0.75 # 默认宽高比
fig, axes = plt.subplots(1, n_panels, figsize=(fig_width, fig_height))
fig.set_dpi(450)
return fig, axesColor Mode
色彩模式
- RGB recommended (wider color gamut; faithful reproduction of fluorescent colors online)
- CMYK also accepted (converted for print automatically)
- Accessibility: Use colorblind-friendly palettes
- 推荐使用RGB模式(色域更广;可在线如实还原荧光色)
- 也接受CMYK模式(将自动转换为印刷格式)
- 无障碍要求:使用色弱友好型配色方案
Recommended Colorblind-Safe Palette
推荐的色弱安全配色方案
python
undefinedpython
undefinedNature-friendly colorblind-safe colors
《Nature》友好型色弱安全配色
NATURE_COLORS = {
'blue': '#0072B2',
'orange': '#E69F00',
'green': '#009E73',
'red': '#D55E00',
'purple': '#CC79A7',
'cyan': '#56B4E9',
'yellow': '#F0E442',
'black': '#000000',
}
---NATURE_COLORS = {
'blue': '#0072B2',
'orange': '#E69F00',
'green': '#009E73',
'red': '#D55E00',
'purple': '#CC79A7',
'cyan': '#56B4E9',
'yellow': '#F0E442',
'black': '#000000',
}
---Font Requirements
字体要求
| Element | Font | Size | Style |
|---|---|---|---|
| Body text in figures | Helvetica or Arial | 5-7 pt | Regular |
| Panel labels | Helvetica or Arial | 8 pt | Bold, lowercase (a, b, c) |
| Amino acid sequences | Courier | — | Monospace |
| Greek characters | Symbol | — | — |
| 元素 | 字体 | 字号 | 样式 |
|---|---|---|---|
| 配图正文 | Helvetica或Arial | 5-7 pt | 常规 |
| 面板标签 | Helvetica或Arial | 8 pt | 加粗、小写(a, b, c) |
| 氨基酸序列 | Courier | — | 等宽 |
| 希腊字符 | Symbol | — | — |
Critical Rules
关键规则
- Use sans-serif fonts only (Helvetica or Arial)
- Do NOT outline text — text must remain editable
- Embed fonts as TrueType 2 or 42 (NOT TrueType 3)
- Panel labels: lowercase bold letters (a, b, c — not A, B, C)
- 仅使用无衬线字体(Helvetica或Arial)
- 请勿将文字转曲——文字必须保持可编辑状态
- 嵌入TrueType 2或42字体(禁止使用TrueType 3)
- 面板标签:加粗小写字母(a, b, c — 而非A, B, C)
Python: Apply Nature Font Settings
使用Python设置《Nature》字体规范
python
import matplotlib.pyplot as plt
def set_nature_fonts():
"""Configure Matplotlib for Nature figure fonts."""
plt.rcParams.update({
'font.family': 'sans-serif',
'font.sans-serif': ['Helvetica', 'Arial'],
'font.size': 7,
'axes.labelsize': 7,
'axes.titlesize': 7,
'xtick.labelsize': 6,
'ytick.labelsize': 6,
'legend.fontsize': 6,
'figure.titlesize': 8,
})python
import matplotlib.pyplot as plt
def set_nature_fonts():
"""配置Matplotlib以符合《Nature》配图字体要求。"""
plt.rcParams.update({
'font.family': 'sans-serif',
'font.sans-serif': ['Helvetica', 'Arial'],
'font.size': 7,
'axes.labelsize': 7,
'axes.titlesize': 7,
'xtick.labelsize': 6,
'ytick.labelsize': 6,
'legend.fontsize': 6,
'figure.titlesize': 8,
})Labeling Conventions
标注规范
Figure Numbering
配图编号
- Sequential: Figure 1, Figure 2, Figure 3, etc.
- All figures must be cited in the text in order
- 按顺序编号:图1、图2、图3等
- 所有配图必须在正文中按顺序引用
Panel Labels
面板标签
- Lowercase bold letters: a, b, c, d, ...
- Font size: 8 pt bold
- Position: top-left corner of each panel
- 加粗小写字母:a, b, c, d, ...
- 字号:8 pt 加粗
- 位置:每个面板的左上角
Axes and Legends
坐标轴与图例
- Include units in parentheses on all axes
- Scale bars must be on separate layers (not flattened into the image)
- Figure legends placed on a separate manuscript page after References
- 所有坐标轴需在括号内标注单位
- 比例尺必须放在单独图层(不得与图像合并)
- 配图图例需放在参考文献后的单独稿件页面
Example Panel Labeling
面板标注示例
python
import matplotlib.pyplot as plt
import string
def add_nature_panel_labels(fig, axes):
"""Add Nature-style lowercase bold panel labels."""
if not hasattr(axes, '__iter__'):
axes = [axes]
for i, ax in enumerate(axes):
label = string.ascii_lowercase[i]
ax.text(-0.1, 1.1, label,
transform=ax.transAxes,
fontsize=8,
fontweight='bold',
va='top',
ha='right',
fontfamily='Arial')python
import matplotlib.pyplot as plt
import string
def add_nature_panel_labels(fig, axes):
"""添加符合《Nature》风格的加粗小写面板标签。"""
if not hasattr(axes, '__iter__'):
axes = [axes]
for i, ax in enumerate(axes):
label = string.ascii_lowercase[i]
ax.text(-0.1, 1.1, label,
transform=ax.transAxes,
fontsize=8,
fontweight='bold',
va='top',
ha='right',
fontfamily='Arial')Image Integrity and Manipulation Policy
图像完整性与处理政策
Prohibited
禁止操作
- Flattening scale bars into the image layer
- Outlining text (must remain editable)
- Adding gridlines, patterns, or drop shadows
- Using colored text in graphs
- Publishing copyrighted images without permission
- 将比例尺合并到图像图层
- 将文字转曲(必须保持可编辑)
- 添加网格线、图案或阴影
- 在图表中使用彩色文字
- 在未获得许可的情况下使用受版权保护的图像
Permitted (with transparency)
允许操作(需透明化处理)
- Linear brightness/contrast adjustments applied uniformly to the entire image
- Color balance corrections applied to the whole image
- 对整个图像统一应用线性亮度/对比度调整
- 对整个图像应用色彩平衡校正
Best Practices
最佳实践
- Keep scale bars on separate layers for editability
- Avoid busy backgrounds behind text
- Remove superfluous decorative elements
- Obtain permissions for all copyrighted figures
- 将比例尺放在单独图层以保持可编辑性
- 避免文字背景过于繁杂
- 删除多余装饰元素
- 为所有受版权保护的配图获取许可
Python Quick Start: Full Validation
Python快速入门:完整验证
python
from PIL import Image
import os
def validate_nature_figure(image_path):
"""Full validation of a figure against Nature requirements."""
img = Image.open(image_path)
issues = []
# 1. Resolution check
dpi = img.info.get('dpi', (72, 72))
if dpi[0] < 300 or dpi[1] < 300:
issues.append(f"Resolution too low: {dpi[0]}x{dpi[1]} DPI (need 300+)")
# 2. Color mode check
if img.mode == 'CMYK':
issues.append("Color mode is CMYK; RGB is recommended for Nature")
elif img.mode not in ('RGB', 'RGBA'):
issues.append(f"Unexpected color mode: {img.mode}; use RGB")
# 3. File size check
size_mb = os.path.getsize(image_path) / (1024 * 1024)
if size_mb > 10:
issues.append(f"File size {size_mb:.1f} MB exceeds 10 MB limit")
# 4. Format check
fmt = img.format
accepted = ['TIFF', 'JPEG', 'PNG', 'EPS', 'PDF']
if fmt and fmt.upper() not in accepted:
issues.append(f"Format '{fmt}' may not be accepted; prefer TIFF or JPEG")
# Report
print(f"=== Nature Figure Validation: {os.path.basename(image_path)} ===")
print(f"Dimensions: {img.size[0]} x {img.size[1]} px")
print(f"DPI: {dpi[0]} x {dpi[1]}")
print(f"Color mode: {img.mode}")
print(f"Format: {fmt}")
print(f"File size: {size_mb:.1f} MB")
if issues:
print(f"\nISSUES FOUND ({len(issues)}):")
for issue in issues:
print(f" - {issue}")
else:
print("\nAll checks PASSED")
return len(issues) == 0python
from PIL import Image
import os
def validate_nature_figure(image_path):
"""根据《Nature》要求对配图进行完整验证。"""
img = Image.open(image_path)
issues = []
# 1. 分辨率检查
dpi = img.info.get('dpi', (72, 72))
if dpi[0] < 300 or dpi[1] < 300:
issues.append(f"分辨率过低:{dpi[0]}x{dpi[1]} DPI(需300+)")
# 2. 色彩模式检查
if img.mode == 'CMYK':
issues.append("色彩模式为CMYK;《Nature》推荐使用RGB模式")
elif img.mode not in ('RGB', 'RGBA'):
issues.append(f"意外色彩模式:{img.mode};请使用RGB模式")
# 3. 文件大小检查
size_mb = os.path.getsize(image_path) / (1024 * 1024)
if size_mb > 10:
issues.append(f"文件大小{size_mb:.1f} MB超过10 MB限制")
# 4. 格式检查
fmt = img.format
accepted = ['TIFF', 'JPEG', 'PNG', 'EPS', 'PDF']
if fmt and fmt.upper() not in accepted:
issues.append(f"格式'{fmt}'可能不被接受;优先选择TIFF或JPEG")
# 报告结果
print(f"=== 《Nature》配图验证:{os.path.basename(image_path)} ===")
print(f"尺寸:{img.size[0]} x {img.size[1]} 像素")
print(f"DPI:{dpi[0]} x {dpi[1]}")
print(f"色彩模式:{img.mode}")
print(f"格式:{fmt}")
print(f"文件大小:{size_mb:.1f} MB")
if issues:
print(f"\n发现问题({len(issues)}个):")
for issue in issues:
print(f" - {issue}")
else:
print("\n所有检查通过")
return len(issues) == 0Key Concepts
核心概念
Resolution and DPI
分辨率与DPI
DPI (dots per inch) measures print resolution. Nature requires 300+ DPI at maximum print size. Upsampling (artificially increasing resolution in software) does not improve image quality and introduces interpolation artifacts. Always capture or export images at native high resolution.
DPI(每英寸点数)衡量印刷分辨率。《Nature》要求最大印刷尺寸下分辨率达到300+ DPI。上采样(在软件中人为提高分辨率)无法提升画质,还会引入插值伪影。始终以原生高分辨率捕获或导出图像。
Vector vs Raster Formats
矢量与栅格格式
Vector formats (AI, EPS, PDF) store images as mathematical paths and scale without quality loss — ideal for graphs, schematics, and line art. Raster formats (TIFF, JPEG, PSD) store pixel grids and degrade when enlarged — appropriate for photographs and micrographs. Nature prefers vector for line drawings and raster for photographic content.
矢量格式(AI、EPS、PDF)以数学路径存储图像,缩放时不会损失画质——非常适合图表、示意图和线条图。栅格格式(TIFF、JPEG、PSD)以像素网格存储,放大时会失真——适用于照片和显微图像。《Nature》优先选择矢量格式用于线条图,栅格格式用于摄影内容。
Image Integrity
图像完整性
Nature enforces strict image integrity policies aligned with the Committee on Publication Ethics (COPE) guidelines. All adjustments must be applied uniformly to the entire image. Selective enhancement of specific regions (e.g., adjusting brightness on one gel lane) is considered data manipulation and grounds for rejection or retraction.
《Nature》遵循出版伦理委员会(COPE)指南,执行严格的图像完整性政策。所有调整必须统一应用于整个图像。选择性增强特定区域(如调整凝胶电泳某条带的亮度)被视为数据操纵,可能导致投稿被拒或文章撤回。
Decision Framework
决策框架
What type of figure are you preparing?
├── Graph, schematic, or diagram → Vector format (AI, EPS, PDF)
│ ├── Created in Illustrator → Export as AI or EPS
│ └── Created in Python/R → Export as PDF or EPS
├── Photograph or micrograph → Raster format (TIFF, PSD, JPEG)
│ ├── Need highest quality → TIFF at 450+ DPI
│ └── File size constrained → JPEG at 300+ DPI
└── Multi-panel composite → Single assembled file
├── Mixed vector + raster → Assemble in Illustrator, export as AI/PDF
└── All raster panels → Assemble in Photoshop, export as TIFF| Scenario | Recommended Format | Resolution | Notes |
|---|---|---|---|
| Bar chart or line graph | AI, EPS, PDF | Vector (resolution-independent) | Keep text editable |
| Fluorescence micrograph | TIFF | 450+ DPI | RGB mode, colorblind-safe palette |
| Western blot image | TIFF | 300+ DPI | No selective adjustments |
| Flow chart or pathway | AI, EPS | Vector | Use Helvetica/Arial fonts |
| Extended Data figure | JPEG | 300+ DPI | Same standards as main figures |
您准备的配图类型是什么?
├── 图表、示意图或流程图 → 矢量格式(AI、EPS、PDF)
│ ├── 使用Illustrator制作 → 导出为AI或EPS
│ └── 使用Python/R制作 → 导出为PDF或EPS
├── 照片或显微图像 → 栅格格式(TIFF、PSD、JPEG)
│ ├── 需要最高画质 → 450+ DPI的TIFF格式
│ └── 文件大小受限 → 300+ DPI的JPEG格式
└── 多面板组合图 → 单个合并文件
├── 矢量+栅格混合 → 使用Illustrator合并,导出为AI/PDF
└── 全栅格面板 → 使用Photoshop合并,导出为TIFF| 场景 | 推荐格式 | 分辨率 | 说明 |
|---|---|---|---|
| 柱状图或折线图 | AI、EPS、PDF | 矢量(分辨率无关) | 保持文字可编辑 |
| 荧光显微图像 | TIFF | 450+ DPI | RGB模式,色弱友好配色 |
| Western Blot图像 | TIFF | 300+ DPI | 禁止选择性调整 |
| 流程图或通路图 | AI、EPS | 矢量 | 使用Helvetica/Arial字体 |
| 扩展数据配图 | JPEG | 300+ DPI | 与主配图标准一致 |
Best Practices
最佳实践
- Export at native resolution: Always capture or generate images at the target resolution (300+ DPI). Never upsample low-resolution images in Photoshop or similar tools
- Use colorblind-friendly palettes: Nature strongly recommends accessible color schemes. Avoid red-green combinations; use blue-orange or include pattern/shape differentiation
- Keep text editable in vector files: Do not outline or rasterize text in AI/EPS files. Nature's production team may need to edit fonts during typesetting
- Assemble multi-panel figures before upload: Combine all panels (a, b, c, etc.) into a single image file. Individual panel uploads will be rejected
- Maintain separate layers for scale bars: Scale bars must remain on a separate layer from the image data so they can be repositioned during production
- Apply adjustments uniformly: Any brightness, contrast, or color correction must be applied to the entire image, not selectively to specific regions
- Retain original unprocessed data: Editors or reviewers may request raw image files at any stage of review or post-publication
- 以原生分辨率导出:始终以目标分辨率(300+ DPI)捕获或生成图像。切勿在Photoshop等工具中对低分辨率图像进行上采样
- 使用色弱友好配色:《Nature》强烈推荐无障碍配色方案。避免红绿色组合;使用蓝橙色组合或添加图案/形状区分
- 保持矢量文件中文字可编辑:请勿在AI/EPS文件中将文字转曲或栅格化。《Nature》的制作团队可能需要在排版过程中编辑字体
- 投稿前合并多面板配图:将所有面板(a, b, c等)合并为单个图像文件。单独上传面板将被拒绝
- 为比例尺保留单独图层:比例尺必须与图像数据放在单独图层,以便在制作过程中重新定位
- 统一应用调整:任何亮度、对比度或色彩校正必须应用于整个图像,而非特定区域
- 保留原始未处理数据:编辑或审稿人可能在审稿或发表后的任何阶段要求提供原始图像文件
Common Pitfalls
常见误区
- Upsampling low-resolution images: Artificially increasing DPI in image software does not add real detail and introduces blurring artifacts
- How to avoid: Re-export from the original source (microscope, plotting software) at 300+ DPI natively
- Submitting individual panels instead of assembled figures: Nature requires multi-panel figures as a single composite file
- How to avoid: Assemble all panels in Illustrator or Photoshop before uploading; use lowercase bold labels (a, b, c)
- Using uppercase panel labels: Nature uses lowercase bold (a, b, c), unlike many other journals that use uppercase
- How to avoid: Double-check the journal's labeling convention; Nature specifically requires lowercase
- Outlining text in vector files: Converting text to outlines makes it uneditable, which Nature prohibits
- How to avoid: Embed fonts as TrueType 2 or 42 instead of converting to outlines
- Submitting in CMYK color mode: While accepted, CMYK narrows the color gamut and may misrepresent fluorescence data online
- How to avoid: Submit in RGB; Nature handles CMYK conversion for print internally
- Exceeding the 10 MB file size limit: Large TIFF files often exceed this threshold
- How to avoid: Use LZW compression for TIFF files or convert to high-quality JPEG (300+ DPI)
- 对低分辨率图像进行上采样:在图像软件中人为提高DPI不会增加真实细节,还会引入模糊伪影
- 避免方法:从原始来源(显微镜、绘图软件)重新导出为300+ DPI的原生分辨率图像
- 单独上传面板而非合并后的配图:《Nature》要求多面板配图为单个组合文件
- 避免方法:投稿前在Illustrator或Photoshop中合并所有面板;使用加粗小写标签(a, b, c)
- 使用大写面板标签:《Nature》使用加粗小写(a, b, c),不同于许多使用大写的期刊
- 避免方法:仔细核对期刊的标注规范;《Nature》明确要求小写
- 在矢量文件中将文字转曲:将文字转换为轮廓会使其无法编辑,这是《Nature》禁止的操作
- 避免方法:嵌入TrueType 2或42字体,而非转换为轮廓
- 提交CMYK色彩模式的图像:虽然可接受,但CMYK色域较窄,可能无法在线如实呈现荧光数据
- 避免方法:提交RGB模式的图像;《Nature》会在内部处理CMYK到印刷格式的转换
- 超过10 MB的文件大小限制:大型TIFF文件常超出此阈值
- 避免方法:对TIFF文件使用LZW压缩,或转换为高质量JPEG(300+ DPI)
Pre-Submission Checklist
投稿前检查清单
Before submitting figures to Nature, verify:
- Resolution is at least 300 DPI (450+ DPI preferred)
- File format is AI, EPS, TIFF, PSD, or high-quality JPEG
- Each file is under 10 MB
- Multi-panel figures assembled as a single image file
- Color mode is RGB (not CMYK)
- Colorblind-accessible palette used
- Fonts are Helvetica or Arial, 5-7 pt body, 8 pt bold panel labels
- Panel labels are lowercase bold (a, b, c)
- Text is NOT outlined (remains editable)
- Fonts embedded as TrueType 2 or 42
- Scale bars on separate layers (not flattened)
- No gridlines, patterns, or drop shadows
- Axes include units in parentheses
- All image adjustments applied uniformly to entire image
- Original unprocessed data retained for editor/reviewer requests
- Copyright permissions obtained for any third-party images
向《Nature》提交配图前,请验证:
- 分辨率至少为300 DPI(推荐450+ DPI)
- 文件格式为AI、EPS、TIFF、PSD或高质量JPEG
- 单个文件大小不超过10 MB
- 多面板配图已合并为单个图像文件
- 色彩模式为RGB(非CMYK)
- 使用了色弱无障碍配色方案
- 字体为Helvetica或Arial,正文5-7 pt,面板标签8 pt加粗
- 面板标签为加粗小写(a, b, c)
- 文字未转曲(保持可编辑)
- 嵌入TrueType 2或42字体
- 比例尺在单独图层(未合并)
- 无网格线、图案或阴影
- 坐标轴在括号内标注了单位
- 所有图像调整统一应用于整个图像
- 保留原始未处理数据以备编辑/审稿人要求
- 已获取所有第三方图像的版权许可
References
参考文献
- Nature Formatting Guide: https://www.nature.com/nature/for-authors/formatting-guide
- Nature Final Submission: https://www.nature.com/nature/for-authors/final-submission
- Nature Research Figure Guide: https://research-figure-guide.nature.com/figures/preparing-figures-our-specifications/